HOW TO STRİNG TO CHAR
조회 수: 3 (최근 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!

