gpt4 book ai didi

Gnuplot:Hidden3D

转载 作者:行者123 更新时间:2023-12-02 16:48:14 25 4
gpt4 key购买 nike

有没有办法可以将这些重叠的线隐藏在我的绘图后面?我尝试使用hidden3d选项,但它没有按我的预期工作。

set encoding utf8
set key right top

set xrange[0:1]
set yrange[0:1]

set grid
set ztics 0.01
set palette rgbformulae -5,-12,-30

set xlabel "x" font "Helvetica, 20"
set ylabel "y" font "Helvetica, 20"
set zlabel "z" font "Helvetica, 20"

set terminal postscript eps enhanced color font "Helvetica, 20"
set output "approx_jacobi.eps"

ue(x,y) = sin(pi*x)*sin(pi*y)/(2*pi**2);

#set hidden3d front
set dgrid3d 31, 31 qnorm 2
splot 'results.dat' with pm3d notitle,\
ue(x,y) w l lw 2 t 'Exact'

我目前得到的结果是

here it is

最佳答案

使用set hide3d front对我来说效果很好。我必须稍微增加等采样以避免由于线性插值而导致线与曲面相交。另外,您不需要使用 set dgrid3d 因为您已经有一个常规网格。

set pm3d
set hidden3d front
set ticslevel 0
set isosamples 40
set palette rgbformulae -5,-12,-30

ue(x,y) = sin(pi*x)*sin(pi*y)/(2*pi**2)
splot 'results.dat' with pm3d, ue(x,y) w l

4.6.5 的结果是:

enter image description here

关于Gnuplot:Hidden3D,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27434807/

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