gpt4 book ai didi

Gnuplot:在曲面上绘制路径

转载 作者:行者123 更新时间:2023-12-04 14:58:38 24 4
gpt4 key购买 nike

我想在 gnuplot 中绘制 3d 表面上的路径,但我不知道该怎么做。 3d 表面由一个函数生成,我可以用等高线图显示,路径是一系列数据点 [x, y, f(x,y)] 我可以用线调色板显示(所以值f(x,y) 的变化改变了线条的颜色。但是有没有办法在等高线图上叠加线条?我无法让它工作。提前致谢。

最佳答案

它应该很简单......这是一个带有数据文件的小示例脚本:

数据文件(test.dat):

.1 .1
.2 .2
.3 .3
.4 .4
.5 .5
.6 .6

绘图脚本:

set yrange [0:1]
set xrange [0:1]
f(x,y) = sin(x*10)*cos(y*10)
splot f(x,y),'test.dat' u 1:2:(f($1,$2)) w lines

如果您想根据调色板为线段着色:

splot f(x,y),'test.dat' u 1:2:(f($1,$2)):(f($1,$2)) w lines palette

关于Gnuplot:在曲面上绘制路径,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14739445/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com