How to categorize elements in a matrix based on positive or negative terms and assign them '0' and '1'

1 回表示 (過去 30 日間)
I am having a column matrix say 7*1. Now, i need to assign '0' to negative elements and '1' to positive elements in the matrix. Thank you in advance.
For example:
A=[ 0.468505878281799
-1.90580778081907
-2.25397431420907
-3.46546394734966
0.488991442582022
-1.68349064240944
0.377334138950664]
Expected output:
B= [ 1; 0; 0; 0; 1; 0; 1]

採用された回答

David Hill
David Hill 2022 年 12 月 1 日
A=[ 0.468505878281799
-1.90580778081907
-2.25397431420907
-3.46546394734966
0.488991442582022
-1.68349064240944
0.377334138950664];
B=A>0
B = 7×1 logical array
1 0 0 0 1 0 1

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeMatrix Indexing についてさらに検索

製品


リリース

R2020b

Community Treasure Hunt

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

Start Hunting!

Translated by