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.
关于 MATLAB 罗盘图,我有一个相当简单的问题。
每当我尝试在 MATLAB 中使用罗盘图绘制方向时,90 度指针总是指向北方。这是因为 MATLAB 中的北参考是 90 度吗?如何更改它以使北参考为 0 度?这是因为我正在使用风速矢量...
生成罗盘图后,尝试:
az = 90; % azimuth i.e. rotate around z-axis horizontally by 90 degrees el = -90; % elevation negative, effectively looking beneath plot view(az, el);
您也可以使用它camroll来执行此操作:
camroll
camroll(90)
这实际上是顺时针旋转相机看情节,而不是情节本身。因此,如果要将绘图逆时针旋转 90 度,则需要将相机顺时针旋转 90 度...