根据文档, Julia Plots中的 annotation 属性似乎只采用 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")
tvec=0:0.1:4*pi
plot(tvec, sin(tvec), cos(tvec))
根据文档, Julia Plots中的 annotation 属性似乎只采用 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")
tvec=0:0.1:4*pi
plot(tvec, sin(tvec), cos(tvec))
根据此处找到的 Julia Plots ( Plots.jl ) 文档,GR、PyPlot 和 Plotly(JS) 都支持某种形式的 3D 图。值得在这里深入研究一些示例,以探索这些不同的后端如何支持 3D 绘图。