hi , i'm trying to make a simple loop which is give me a useless syntax between what i need , please how can i remove ('ans=') thanks anyway
1 vue (au cours des 30 derniers jours)
Afficher commentaires plus anciens
sofiane benhamza
le 21 Sep 2020
Commenté : Ameer Hamza
le 23 Sep 2020
for k=1:20
sprintf('<div> DIV %d </div>',k)
end
it gives :
ans =
<div> DIV 18 </div>
ans =
<div> DIV 19 </div>
ans =
<div> DIV 20 </div>
0 commentaires
Réponse acceptée
Ameer Hamza
le 21 Sep 2020
Use fprintf()
for k=1:20
fprintf('<div> DIV %d </div>\n',k)
end
2 commentaires
Plus de réponses (0)
Voir également
Catégories
En savoir plus sur Resizing and Reshaping Matrices 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!