Matlab plot disappears after editing X and Y limits
2 views (last 30 days)
Show older comments
Plotted matlab spectra data plot (transmittance against wave bands). My wave bands were in band numbers and trying to change to wavelength real values in nm, i neeeded to edit Y axis and X axis limits and my plot disappears. How can i display my plot back with the new modified X and Y axis labels. I am using Matlab release R2023b.
Accepted Answer
Taylor
on 6 Feb 2024
Difficult to say without seeing the actual code, but you can try something like this:
ax = gca;
ax.XLim = [1 10]; % Use your values here
ax.YLim = [1 10]; % Use your values here
ax.XLabel = "Your Label Here";
ax.YLabel = "Your Label Here";
0 Comments
More Answers (0)
See Also
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!