How can I change the values of the axis to use values from a vector instead of matrix position

1 次查看(过去 30 天)
I have a plot in imagesc where I want it to use the values of the original vector instead of the position value of the matrix, i.e. the range of the vector I used originally is 200 (-10:0.1:10) and I want to use those instead of the position 1:200. From this
to this

采纳的回答

Star Strider
Star Strider 2017-4-8
Use the get and set functions to get the ticks, then relabel them:
xt = get(gca, 'XTick');
yt = get(gca, 'YTick');
xtix = linspace(-10, 10, length(xt));
ytix = linspace(-10, 10, length(yt));
set(gca, 'XTick',xt,'XTickLabel',xtix, 'YTick',yt,'YTickLabel',ytix)
This will get you started. Make necessary changes to get the result you want.
(Instead of using gca, it is better to use the actual axis handle, but this will work.)
Also, for your purposes, use:
axis equal

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Contour Plots 的更多信息

Community Treasure Hunt

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

Start Hunting!

Translated by