1
A
回答
3
The MathWorks文檔的簡單副本。欲瞭解更多詳情,請看this。
% Create a sphere and color it using a topographic colormap:
cla reset;
load topo;
[x y z] = sphere(45);
s = surface(x,y,z,'FaceColor','texturemap','CData',topo);
colormap(topomap1);
% Brighten the colormap for better annotation visibility:
brighten(.6)
% Create and arrange the camera and lighting for better visibility:
campos([2 13 10]);
camlight;
lighting gouraud;
axis off vis3d;
% Set the x- and y-coordinates of the textarrow object:
x = [0.7698 0.5851];
y = [0.3593 0.5492];
% Create the textarrow object:
txtar = annotation('textarrow',x,y,'String','We are here.','FontSize',14);
2
添加箭頭等簡單的方法是使用繪圖工具。您可以通過單擊包含您繪製的圖形的窗口工具欄上最右側的圖標激活繪圖工具。一旦你有了箭頭,你就可以從圖形中生成m文件。
3
此外,請務必檢查ARROW提交的FEX Erik Johnson(可追溯到2000年,但在2009年更新)。
screenshot http://www.mathworks.com/matlabcentral/fx_files/278/3/arrow_demo.png
相關問題
- 1. 圖中添加註釋,以MATLAB圖
- 2. 如何在圖像中添加註釋matlab
- 3. 如何將註釋添加到Qt中的圖像?
- 4. 將註釋添加到UIImageView
- 5. 將註釋添加到pdf
- 6. 如何在iPhone中添加地圖視圖中心的註釋?
- 7. 在R中添加註釋功能將符號添加到圖中
- 8. MPAndroidChart - 如何將註釋或圖像添加到圖表
- 9. 如何在PHP Eclipse中添加註釋?
- 10. 如何在dygraph中添加註釋?
- 11. 在Matlab中將多個2D圖像疊加到3D中
- 12. 將註釋添加到Google地圖中的形狀疊加
- 13. 如何在地圖視圖中添加註釋在Iphone
- 14. 在oracle的視圖中添加註釋
- 15. 如何在Eclipse中添加JSP註釋(而不是HTML註釋)?
- 16. 如何在Rmarkdown beamer中添加註釋或「註釋」?
- 17. 如何將標籤註釋到3D matplotlib散點圖?
- 18. 在PDF中添加註釋
- 19. 在RCS中添加註釋
- 20. 在checkintool中添加註釋
- 21. 如何在mkmap中添加註釋中的圖像
- 22. 如何在地圖視圖中添加多個註釋
- 23. 如何在圖表中添加圖表js註釋?
- 24. 如何將註釋添加到Clojure中的通用類?
- 25. 如何使用C#將「註釋」添加到JPEG文件中
- 26. 如何將現有註釋添加到Ruby中的RDoc?
- 27. 如何將文本註釋添加到轉換選項中?
- 28. 如何將註釋添加到Visual Studio書籤或行中?
- 29. 如何將自定義註釋添加到Hibernate hbm2ddl輸出中?
- 30. 如何將數據註釋添加到ASP.NET中的部分類?