HOW TO STRİNG TO CHAR
5 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Gökhan BAYKARA
el 2 de Mayo de 2020
Comentada: Image Analyst
el 2 de Mayo de 2020
how do I print this expression''110 011101110001111001111010 1111000001000100011011000111010'' in a matrix of 10x10?
0 comentarios
Respuesta aceptada
Image Analyst
el 2 de Mayo de 2020
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 comentarios
Image Analyst
el 2 de Mayo de 2020
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.
Más respuestas (1)
Ver también
Categorías
Más información sobre Entering Commands en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!

