查看单个帖子
旧 2019-11-27, 07:35   #1
poster
高级会员
 
注册日期: 2019-11-21
帖子: 3,006
声望力: 66
poster 正向着好的方向发展
默认 How to make MATLAB's xlim auto yet symmetric around 0?

I am making a very simple scatter plot.



pts = [1 1; -2 1];
scatter(pts(:, 1), pts(:, 2));


As we see, the xlim is automatically determined by MATLAB to be from -2 to 1, which is satisfactory to me.



What annoys me is that the origin 0 is not centered. That is the x-axis is asymmetric around 0. In this particular example, I want the x-axis to be from -2 to 2.



I can surely find the largest absolute value, which is 2 in this case, and manually do xlim([-2 2]). Is there a more elegant way, like axis center in my imagination?





More answer...
poster 当前离线   回复时引用此帖