how to make the output from a for loop displayed in an horizontal pattern

4 vues (au cours des 30 derniers jours)
segun
segun le 27 Avr 2014
Réponse apportée : rifat le 27 Avr 2014
I need syntax in matlab to make answer displayed as (1 by 8 ) for the case below exactly the way the for loop figures below are arranged. for f = [1 4 8 10 12 16 18 20]; b=2; c=1; d=1; n=4; z=b*c*d*n disp(z) % make z display answer as 10 ,20,30,40,50 etc end Thanks

Réponse acceptée

rifat
rifat le 27 Avr 2014
Use fprintf() instead of disp() within for loop. For example,
fprintf('%d ',z);

Plus de réponses (0)

Catégories

En savoir plus sur Loops and Conditional Statements dans Help Center et File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by