Filter löschen
Filter löschen

How to code fprintf on multiple lines ?

11 Ansichten (letzte 30 Tage)
Carrillo Pablo
Carrillo Pablo am 18 Sep. 2019
Kommentiert: Carrillo Pablo am 18 Sep. 2019
Hi,
I'm trying to write an fprintf statement on multiple lines of code so that i don't exceed a 85 columns boundary (half my screen).
I can't find a solution that don't need to use another function (like strcat) :
fprintf(strcat("Les données des deux sessions de '%s' semblent venir de",...
" deux distributions différentes.\n p = %4.3f \n"), results_name{i}, pp);
When I try
fprintf(["Les données des deux sessions de '%s' semblent venir de"...
" deux distributions différentes.\n p = %4.3f \n"], results_name{i}, pp);
I get an error :
% Error using fprintf
% Invalid file identifier. Use fopen to generate a valid file identifier.
Do I really need to use a function to do so, or is there another way ?
Thank you !

Akzeptierte Antwort

Rik
Rik am 18 Sep. 2019
As far as I'm aware this should work with strings as well, but I frequently use a setup like this with a char array instead. So if you replace double quotes by single quotes this should work with a square bracket without requiring a call to strcat.
  3 Kommentare
Rik
Rik am 18 Sep. 2019
Bearbeitet: Rik am 18 Sep. 2019
The problem with your original code is that it generates a 1x2 string array as the FormatSpec. I can't find in the doc how you can expect fprintf to handle a non-char non-scalar FormatSpec, but I think we have the conclusion: poorly. It might attempt to treat the first string element as the fid and the second as FormatSpec, but I'm not aware of a robust way to test this hypothesis.
Also, the square bracket might be calling strcat (instead of cat) for char inputs. The debugger on my copy of R2019a doesn't allow me to step into this operation.
Carrillo Pablo
Carrillo Pablo am 18 Sep. 2019
Thanks a lot for the explanation. I wasn't aware there was a difference between single and double quotes, neither than they were creating a different class of array, I guess I do now !

Melden Sie sich an, um zu kommentieren.

Weitere Antworten (1)

Ruger28
Ruger28 am 18 Sep. 2019
why are you using
strcat
instead of
sprintf
Also, your data would be helpful, but try:
fprintf(sprintf("Les données des deux sessions de '%s' semblent venir de",...
" deux distributions différentes.\n p = %4.3f \n", results_name{i}, pp));
  4 Kommentare
Carrillo Pablo
Carrillo Pablo am 18 Sep. 2019
The code in the editor.
Ruger28
Ruger28 am 18 Sep. 2019
I don't believe there is a way to do that on non-comments, so the scroll bar is most likely your only option.

Melden Sie sich an, um zu kommentieren.

Kategorien

Mehr zu Characters and Strings finden Sie in Help Center und File Exchange

Produkte

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by