Say i have a 12*2 matrix having two parameters where
a=[2;4;5;80;40;5;43;22;6;56;6;57] &
b=[100;122;132;120;108;200;231;211;165;127;130;150];
i want to get a column matrix using if else statement of 4 conditions like below.
the conditions are 2<a<10 and 110<b<130
the result will be like below, where the conditions match it will show 1 else 0
final result=[0;1;0;0;0;0;0;0;0;0;0;0]

 採用された回答

madhan ravi
madhan ravi 2019 年 1 月 29 日

0 投票

ia = a>2 & a<10 ;
ib = b>110 & b<130 ;
Final_result = ia & ib

1 件のコメント

Debanjan Maity
Debanjan Maity 2019 年 1 月 29 日
If I want to get answer as [0;5;0;0;0;0;0;0;0;0;0;0], then what to do?

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

その他の回答 (0 件)

カテゴリ

ヘルプ センター および File ExchangeShifting and Sorting Matrices についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by