Plot response graph properties
16 次查看(过去 30 天)
显示 更早的评论
How can I change the complete scale of Y axis the figure shown below (Range angle plot) as the values being shown are completely wrong. I have plotted the same data for Range Doppler response (the picture is attached) but there the axis values are up to the mark. I want my Range angle plot to show the same value of ranges.
Thanks in advance.

1 个评论
回答(1 个)
Star Strider
2020-8-28
If you simply want to change the Y-axis tick labels:
Ax = gca;
yt = Ax.YTick;
Ax.YTickLabel = fix(linspace(-25, 25, numel(yt)));
If you want to actually re-scale the y-axis, that might be more difficult.
0 个评论
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Polar Plots 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!