Filter löschen
Filter löschen

Use the index in a FOR loop for a string

9 Ansichten (letzte 30 Tage)
Antonio
Antonio am 10 Apr. 2017
Beantwortet: Stephen23 am 11 Apr. 2017
How do I make 50 plots (in separate figures) using the following format:
for i = 1:50
figure('name','Hurricane "i"')
scatter(x,y,10,z"i");
title('Hurricane "i"');
end
e.g. I want graphs like scatter(x,y,10,z36) with the title of "Hurricane 36". Thanks for your help in advance.

Akzeptierte Antwort

Stephen23
Stephen23 am 11 Apr. 2017
@Mamali: you should put your data into one array (either an matrix, and ND array, or a cell array) and using indexing. Do not try to access variable names dynamically:

Weitere Antworten (1)

John Osborne
John Osborne am 10 Apr. 2017
Bearbeitet: John Osborne am 10 Apr. 2017
Try
figure(i)
%plotting commands
title(['Hurricane ' num2str(i)])
  3 Kommentare
Stephen23
Stephen23 am 11 Apr. 2017
Bearbeitet: Stephen23 am 11 Apr. 2017
@Mamali: you should put your data into one array (either an matrix, and ND array, or a cell array) and using indexing. Do not try to access variable names dynamically:
Antonio
Antonio am 11 Apr. 2017
@Stephen Cobeldick: Thanks for your great answer :)

Melden Sie sich an, um zu kommentieren.

Kategorien

Mehr zu Line Plots finden Sie in Help Center und File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by