HOW TO STRİNG TO CHAR
5 ビュー (過去 30 日間)
古いコメントを表示
how do I print this expression''110 011101110001111001111010 1111000001000100011011000111010'' in a matrix of 10x10?
0 件のコメント
採用された回答
Image Analyst
2020 年 5 月 2 日
You can't. It's only 58 characters long - 60 if you include the spaces:
expression = "1100111011100011110011110101111000001000100011011000111010"
length(expression)
length(char(expression))
expression =
"1100111011100011110011110101111000001000100011011000111010"
ans =
1
ans =
58
In the meantime, try
expression = "1100111011100011110011110101111000001000100011011000111010"
length(expression)
charVector = char(expression)
length(charVector)
charMatrix = reshape(charVector, 2, 29) % or 10 by 10
4 件のコメント
Image Analyst
2020 年 5 月 2 日
Is this homework? Because it looks like it and we don't want you to get into trouble by submitting my answer as your own. Please read this link.
その他の回答 (1 件)
参考
カテゴリ
Help Center および File Exchange で Entering Commands についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!

