Index exceeded matrix dimensions
Show older comments
I am trying to create 12 windroses for each month of a year using data in the workspace (variable but around 720 by 24 tables) and each time I try to run the code below I get the index exceeded error message. I have managed to get the windrose figure for one month but wanted to automate the process with a for loop, suggestions.
nFiles = 12;
for i = 1:nFiles
filename = sprintf('%s_%d', 'Month', i);
Options = {'anglenorth', 0, 'angleeast', 90, 'labels', {'North (0)', 'South (180)', 'East (90)', 'West (270)'}, 'Min_Radius', .05, 'nFreq', 8, 'FreqRound', 3, 'freqlabelangle', 45, 'cMap','invparula' 'vWinds', [0 5 5 10 10 15 15 20 20 25 25 30 30 35 35 40], 'TitleString',{'January';''},'LabLegend','Wind Speed in km/h', 'TitleFontWeight', 'bold', 'LegendType', 2};
[figure_handle, count, Speeds, Directions, Table] = WindRose(filename(:,12) .* 10, filename(:,14), Options);
end
5 Comments
Walter Roberson
on 23 May 2018
Why are you taking column 12 of the file name itself?
Cameron Power
on 23 May 2018
"...there is most likely an error in my approach."
Yes, there is. Accessing variable names dynamically using eval, assignin, etc. is slow, complex, buggy and hard to debug. Beginners think that they will write great code using eval, but actually they just force themselves into writing slow, complex, buggy code. The MATLAB documentation specifically advises against what you are trying to do: "A frequent use of the eval function is to create sets of variables such as A1, A2, ..., An, but this approach does not use the array processing power of MATLAB and is not recommended. The preferred method is to store related data in a single array"
There are many good reasons to avoid using eval to dynamically access variable names, some of them are explained here:
Note that putting 1, 2, ... 12 into the variable names means that you have used pseudo indexing, which could trivially be turned into real indexing: thus you could easily write more efficient code.
Advice to use eval is teaching you how to write slow, complex code which is ahrd to debug. If you want to write simpler, more efficient code which is much easier to read, write, and debug, then put your data into one array and use indexing.
Cameron Power
on 23 May 2018
Stephen23
on 23 May 2018
@Cameron Power: the problem is not eval in itself, it is how beginners access variable names dynamically. The same problems occur regardless of what function or method is used to access the variable names dynamically. So, the best advice you will get is to avoid this situation entirely, which is trivial to do using one variable and indexing, exactly like the MATLAB documentation and all MATLAB experts recommend.
Read the links that I gave you, you can learn why this is a bad practice, and how simple the (much better) alternatives are.
Accepted Answer
More Answers (0)
Categories
Find more on Matrix Indexing in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!