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
Afficher commentaires plus anciens
a=3; b=4; c=6; d=7; e=9;
Réponse acceptée
Plus de réponses (1)
Azzi Abdelmalek
le 1 Sep 2016
Modifié(e) : Azzi Abdelmalek
le 1 Sep 2016
str={'a','b','c','d'}
v={3 4 5 6}
w=[str; v]
sprintf('%s=%d;',w{:})
1 commentaire
mohammed hamdy
le 1 Sep 2016
Catégories
En savoir plus sur String Parsing dans Centre d'aide et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!