How to remove certain value from array and reshape the array?

138 ビュー (過去 30 日間)
minsoo kim
minsoo kim 2017 年 12 月 1 日
コメント済み: Muhammad Danish 2022 年 10 月 27 日
I want to delete every -120 value from S(i x j) and reshape the S without -120.
Only S(X, certain 'Y's) have this -120 value.
Any ideas?

回答 (1 件)

Guillaume
Guillaume 2017 年 12 月 1 日
編集済み: Guillaume 2017 年 12 月 1 日
Deleting arbitrary elements from an array will always automatically reshape it into a vector unless you explicitly delete entire rows, columns, pages, etc.
So:
S(S == -120) = [];
will delete all -120 values and reshape your array at the same time.
  3 件のコメント
Mohammad Safayet Hossain
Mohammad Safayet Hossain 2018 年 11 月 24 日
Thanks a lot...It works nicely....
Muhammad Danish
Muhammad Danish 2022 年 10 月 27 日
its not working bro

サインインしてコメントする。

カテゴリ

Help Center および File Exchange행렬과 배열 についてさらに検索

Community Treasure Hunt

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

Start Hunting!