Copying data
1 回表示 (過去 30 日間)
古いコメントを表示
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
0 件のコメント
採用された回答
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 Center および File Exchange で Data Import and Analysis についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!