Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个正弦波的动画 3D 网格,但我想将我的所有轴限制在特定范围内。
这是我的一段代码:
[x,t] = meshgrid(x,t); j=1; while 1 j=j+1; y = a*sind(2*pi*f*(j/100+(x*T)/wl)); mesh(y); F(j) = getframe; end movie(F);
变量 a、f、T 和 wl 的值由用户预定义
我想将 x 轴从 10 限制到 20,有人可以告诉我怎么做吗?
绘制网格后调用xlim。
xlim([10 20])