Info
この質問は閉じられています。 編集または回答するには再度開いてください。
x is 521*1 vector.i wanna to access x values except the positions of 1:16:512.
1 回表示 (過去 30 日間)
古いコメントを表示
x=rand(512,1);
p=1:16:512;
disp(x(p)) % it displays 1 value,17 value like that
i want to display the remainig positions value
0 件のコメント
回答 (1 件)
the cyclist
2017 年 12 月 31 日
Here is one way:
x=rand(512,1);
p=1:16:512;
q=setdiff(1:512,p);
disp(x(q))
0 件のコメント
この質問は閉じられています。
参考
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!