Why there is no space after the equal sign? (fprintf)
6 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
fprintf('%s \n',strcat('s',' = ','1000',';'));
Output:
s =1000;
Desired:
s = 1000;
0 Kommentare
Akzeptierte Antwort
Stephen23
am 7 Jun. 2018
Bearbeitet: Stephen23
am 7 Jun. 2018
"Why there is no space after the equal sign?"
It has nothing to do with fprintf. As the strcat clearly states, strcat removes whitespace characters from the end of char vectors: "For character array inputs, strcat removes trailing ASCII white-space characters". If you want to keep the space characters, put it into a scalar cell array, like this:
{' = '}
But really you would be much better off just writing a proper format string for fprintf, rather than using both strcat and fprintf.
Weitere Antworten (1)
Kodavati Mahendra
am 7 Jun. 2018
Bearbeitet: Kodavati Mahendra
am 7 Jun. 2018
fprintf('%s \n',strcat("s"," = ","1000",";"));
output
s = 1000;
1 Kommentar
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!