- すべての要素が3に等しい場合を削除したい場合:b = a(a~=3);
- 第3要素を削除したい場合:b = a; b(3) = [];
- または:a = [2,3,1,5,4]; a(a == 3) = [];
ベクトルから要素を削除する方法は?
10 views (last 30 days)
Show older comments
MathWorks Support Team
on 13 Nov 2024 at 0:00
Answered: MathWorks Support Team
on 13 Nov 2024 at 6:34
皆さんこんにちは。ベクトルから要素を削除する方法を教えてください。例えば、ベクトル a=[1,2,3,4,5] から3を削除して a=[1,2,4,5] にしたいです。
Accepted Answer
MathWorks Support Team
on 13 Nov 2024 at 0:00
以下の3つの方法を考えることができます。それぞれ少しずつ異なります。
0 Comments
More Answers (0)
See Also
Categories
Find more on ビッグ データの処理 in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!