How do I generate a string during a loop
Afficher commentaires plus anciens
I'm looking to generate a string, such as 'grape', when a certain value, say, 0.5, is encountered during a loop. How do I do this?
3 commentaires
per isakson
le 2 Nov 2017
Modifié(e) : per isakson
le 2 Nov 2017
if abs( certain_value - 0.5 ) <= eps( certain_value )
grape = 'Cabernet Sauvignon';
end
Eric
le 2 Nov 2017
if value==0.5
'grape'
end
If you want to actually do something with it, save it in a variable. Not sure what you want to do with the 'grape' string.
Kevin Hartman
le 2 Nov 2017
Réponses (0)
Catégories
En savoir plus sur Data Type Conversion 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!