how can I display my result: the problem on fprintf command
    2 vues (au cours des 30 derniers jours)
  
       Afficher commentaires plus anciens
    
    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.
0 commentaires
Réponse acceptée
  James Tursa
      
      
 le 11 Mai 2020
        The format string is first, not last. E.g.,
fprintf('%s\n\r', expo_result);
1 commentaire
Plus de réponses (0)
Voir également
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!

