How to add strings to an array within a loop
Ältere Kommentare anzeigen
Hello Team, I want to create an array of legend names for a plot. The final array should look like this:
legend_names = ["Case_1", "Case_2", Case_3", ......., "Case_30"]
So, I created a loop to create the variable names,
For ii=1:30
name = sprintf("Case_%d", ii); %%% to create the Case_X names
legend_names = append......?? %%% to create the array as mentioned before
end
Not sure how to construct the array in the loop.
Thanks for your help!
Akzeptierte Antwort
Weitere Antworten (1)
Ameer Hamza
am 18 Nov. 2020
Bearbeitet: Ameer Hamza
am 18 Nov. 2020
Easier is to use compose()
legend_names = compose('Case_%d', 1:30)
It create a cell array which can be directly use with legend()
legend(legend_names)
You can also directly create a string array
legend_names = compose("Case_%d", 1:30)
2 Kommentare
Sayan Banerjee
am 18 Nov. 2020
Ameer Hamza
am 18 Nov. 2020
Change the line to
legend_names = compose('Case\\_%d', 1:30)
Kategorien
Mehr zu Legend finden Sie in Hilfe-Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!