How can I delete values below certain treshold in vector
17 ビュー (過去 30 日間)
古いコメントを表示
Jan-Willem van de Scheur
2018 年 1 月 11 日
コメント済み: Jan-Willem van de Scheur
2018 年 1 月 11 日
I have a 3521x1 vector and I would like to drop all values above the value of 10. How can I do this?
0 件のコメント
採用された回答
Pawel Jastrzebski
2018 年 1 月 11 日
編集済み: Pawel Jastrzebski
2018 年 1 月 11 日
vector = randi(20,1,352);
newVector = vector(vector<10);
2 件のコメント
その他の回答 (0 件)
参考
カテゴリ
Help Center および File Exchange で Fourier Analysis and Filtering についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!