Copying data

2 次查看(过去 30 天)
Vinoth
Vinoth 2011-12-8
Hi,
I have data stored as (2*2*2000).I want to copy the first (2*2*1000) values..how can i do this in matlab???
--vinoth

采纳的回答

Wayne King
Wayne King 2011-12-8
X = randn(2,2,2000);
Y = X(:,:,1:1000);
Y copies the first 1000 elements of X along the 3rd dimension.

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Data Import and Analysis 的更多信息

标签

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by