如何在Julia Plots中制作3D注释

时间:2016-12-26 16:44:33

标签: annotations julia plots.jl

Julia Plots中的注释属性似乎只根据documentation获取x,y坐标和标签的元组。有没有办法在3D情节上做到这一点?例如:

tvec=0:0.1:4*pi
plot(sin, tvec)
annotate!(pi/2,1.0,"max")
annotate!(3*pi/2,-1.0,"min")

产生 enter image description here 但是你如何添加东西

tvec=0:0.1:4*pi
plot(tvec, sin(tvec), cos(tvec))

使用相同类型的annotate!命令似乎注释到叠加的2D坐标上。 enter image description here

1 个答案:

答案 0 :(得分:0)

根据 Julia Plots (Plots.jl) 文档发现 here、GR、PyPlot 和 Plotly(JS) 都支持某种形式的 3D 绘图。值得深入研究一些示例 here 以探索这些不同的后端如何支持 3D 绘图。