hello, i have 5 input as following , how to use print command as print(' a= ' a , ' b= ' b, ' c= ' c, ' d= ' d,' e= ' e) in order to display output a=3 b =4 c=6 d=7 e=9
2 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
mohammed hamdy
il 1 Set 2016
Commentato: mohammed hamdy
il 1 Set 2016
a=3; b=4; c=6; d=7; e=9;
0 Commenti
Risposta accettata
Image Analyst
il 1 Set 2016
Try this:
a=3;
b=4;
c=6;
d=7;
e=9;
% Display output a=3 b =4 c=6 d=7 e=9
fprintf('a=%d b =%d c=%d d=%d e=%d\n', a,b,c,d,e);
Results in the command window match your desired result.
a=3 b =4 c=6 d=7 e=9
2 Commenti
Più risposte (1)
Azzi Abdelmalek
il 1 Set 2016
Modificato: Azzi Abdelmalek
il 1 Set 2016
str={'a','b','c','d'}
v={3 4 5 6}
w=[str; v]
sprintf('%s=%d;',w{:})
Vedere anche
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!