how can I display my result: the problem on fprintf command

1 vue (au cours des 30 derniers jours)
Zeynep Toprak
Zeynep Toprak le 11 Mai 2020
Modifié(e) : Zeynep Toprak le 11 Mai 2020
I write the code as follows:
expo_result = ['quantile of exponential distribution =', num2str(quantile_expo)];
normal_result = ['quantile of normal distribution =', num2str(quantile_normal)];
lognormal_result = ['quantile of lognormal distribution =', num2str(quantile_lognormal)];
gamma_result = ['quantile of gamma distribution =', num2str(quantile_gamma)];
fprintf(expo_result, '%s\n\r' );
fprintf(normal_result, '%s\n\r');
fprintf(lognormal_result, '%s\n\r');
fprintf(gamma_result, '%s\n\r');
But I see result on the command window as follows:
>> project_part_1
quantile of exponential distribution =6.5472e-05quantile of normal distribution =82.864quantile of lognormal distribution =55.4211quantile of gamma distribution=86.6666>>
How can I print them separately? Thanks a lot.

Réponse acceptée

James Tursa
James Tursa le 11 Mai 2020
The format string is first, not last. E.g.,
fprintf('%s\n\r', expo_result);
  1 commentaire
Zeynep Toprak
Zeynep Toprak le 11 Mai 2020
Modifié(e) : Zeynep Toprak le 11 Mai 2020
yeah it works! Thanks a lot!

Connectez-vous pour commenter.

Plus de réponses (0)

Tags

Community Treasure Hunt

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

Start Hunting!

Translated by