How to create another vector based on some if condition?

19 ビュー (過去 30 日間)
Elian Ricardo Gonzalez Beltran
Elian Ricardo Gonzalez Beltran 2019 年 11 月 26 日
編集済み: Guillaume 2019 年 11 月 26 日
I have a 2*1 vector of values
A = [500
200]
condition between or equal to 300 and 500.
Output should be.
B = [true
false];
Any simplest way without using loop. Any help is appreciated. Thanks

採用された回答

Guillaume
Guillaume 2019 年 11 月 26 日
編集済み: Guillaume 2019 年 11 月 26 日
It's rare to have to use if in matlab, and it's certainly not the route to go if you want to operate on whole vectors or matrices at once since if only work with scalar expression. If you were to use if, you'd have to loop over your array.
Your A is trivially transformed into B with:
B = A >= 300 & A <= 500
No if or loop needed.

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeMultidimensional Arrays についてさらに検索

製品

Community Treasure Hunt

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

Start Hunting!

Translated by