how to convert logical into charactor
127 ビュー (過去 30 日間)
古いコメントを表示
what is the matlab code for converting a logical value to character value
0 件のコメント
回答 (2 件)
John D'Errico
2018 年 3 月 18 日
編集済み: John D'Errico
2018 年 3 月 18 日
To answer the question you insist on asking multiple times.
L is a logical vector. C a character array.
L = rand(10,1) < .5
L =
10×1 logical array
1
1
0
1
1
0
1
1
1
1
C = reshape(char(L + '0'),5,2)
C =
5×2 char array
'10'
'11'
'01'
'11'
'11'
0 件のコメント
参考
カテゴリ
Help Center および File Exchange で Data Type Conversion についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!