c=1; a=[4 7] sprintf("cnt %d - [",c) + num2str(a) + "]"
how to convert vector in string as example
2 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
Input: c and a
c=1;
a=[4 7]
"cnt 1 - [4 7]"
c=2;
a=[8 9]
"cnt 2 - [8 9]"
0 Kommentare
Akzeptierte Antwort
Weitere Antworten (1)
Alexander
am 2 Sep. 2023
My solution:
c=1;
a=[4 7]
resultTxT =['"cnt ' num2str(c) ' - [' num2str(a) ']"']
0 Kommentare
Siehe auch
Kategorien
Mehr zu Characters and Strings finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!