How do I generate a string during a loop

2 views (last 30 days)
Kevin  Hartman
Kevin Hartman on 1 Nov 2017
Commented: Kevin Hartman on 2 Nov 2017
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 Comments
Eric
Eric on 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.

Sign in to comment.

Answers (0)

Categories

Find more on Loops and Conditional Statements in Help Center and File Exchange

Tags

Community Treasure Hunt

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

Start Hunting!