How do I print a "%" when using fprintf?
713 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
Alexandria Wynn
il 26 Mar 2019
Risposto: Richard Zapor
il 31 Ago 2023
I need to have the display window have a "%" after the rest of my printing.
My code looks likes this:
fprintf('Percent Error: %0.8f %', percentError);
It is currently printing "Percent Error: 0.03696863 ", but I need it to print "Percent Error: 0.03696863%"
1 Commento
Stephen23
il 27 Mar 2019
The fprintf documentation explains how to define special characters, in the table entitled Special Character it shows:
Special Character Representation
Single quotation mark ''
Percent character %%
Risposta accettata
Più risposte (1)
Richard Zapor
il 31 Ago 2023
Usage of char or '%' is possible.
fprintf('Percent Error: %0.8f %s', percentError,char(37));
or
fprintf('Percent Error: %0.8f %s', percentError,'%');
0 Commenti
Vedere anche
Categorie
Scopri di più su Interactive Control and Callbacks in Help Center e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!