Set axes properties in a loop
Show older comments
Many times I want to set the axes properties with a loop. Here is an example of how I am currently doing it:
ax = gca;
axs = 'XYZ';
for k = 1:3
ax.([axs(k) 'Label']).String = sprintf('A_%d (g/cm^2)',k); % label axis units
end
Is there a better way to do this?
Answers (1)
In this case I think that the for loop is kind of overkill. Without a loop, it is much easier to understand what's going on:
ax.XLabel.String = 'A_1 (g/cm^2)';
ax.YLabel.String = 'A_2 (g/cm^2)';
ax.ZLabel.String = 'A_3 (g/cm^2)';
3 Comments
Robert Alvarez
on 16 Aug 2016
Thorsten
on 17 Aug 2016
I see. Please post the complete example such that we can run the code. For example, nodelist is missing, and a command like plot or surf to show the data.
Robert Alvarez
on 17 Aug 2016
Categories
Find more on Axis Labels 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!