storing matrix elements in a single variable as string
2 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Karanvir singh Sohal
el 29 de Mzo. de 2021
Comentada: Karanvir singh Sohal
el 29 de Mzo. de 2021
Hello!
I want to join the multiple int from the matrix and save them as a string. Let us say I have a matrix A.
A = [3 25 100 5 20 100];
I want to store these values in B as following
B=("3#25@100","5#20@100")
Thanks in advance.
0 comentarios
Respuesta aceptada
Fangjun Jiang
el 29 de Mzo. de 2021
Use for-loop if want to split
A = [3 25 100 5 20 100];
>> B=sprintf("%d#%d@%d\n",A(:))
B =
"3#25@100
5#20@100
"
Más respuestas (1)
Ver también
Categorías
Más información sobre Characters and Strings 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!