selecting values
1 回表示 (過去 30 日間)
古いコメントを表示
i have 1000 values,i want to select 300 first 300 values in it and display please help
0 件のコメント
採用された回答
Andrei Bobrov
2011 年 12 月 29 日
A - your array with size 1000x1, e.g.:
A = randi(125,1000,1);
out = A(1:300)
fprintf('%d\n',out)
2 件のコメント
Walter Roberson
2011 年 12 月 29 日
The number of images so far within the loop is k, and the number of total images is length(files)
その他の回答 (0 件)
参考
カテゴリ
Help Center および File Exchange で Data Type Identification についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!