plot - Matlab: For Loop for Different Titles -


in matlab, generating different plots through loop , have string array,

 s = {'indiana','alabama','texas'} 

and goal print out each string in array separate title each plot.

so plot 1 titled indiana, plot 2 titled alabama, plot 3 titled texas.

thanks,

amanda

for 1 3    plot p = <whatever plot is>     title(s[i])    set(p) 

something of nature looking for


Comments

Popular posts from this blog

c# - DetailsView in ASP.Net - How to add another column on the side/add a control in each row? -

javascript - firefox memory leak -

Trying to import CSV file to a SQL Server database using asp.net and c# - can't find what I'm missing -