gpt4 book ai didi

r - 如何在 r 中绘制 3D 函数?

转载 作者:行者123 更新时间:2023-12-04 12:37:39 25 4
gpt4 key购买 nike

这个问题在这里已经有了答案:





3d plot in R - Patch

(1 个回答)


7年前关闭。




我有一个 3D 函数 - 让我们说 De Jong 函数:

fdejong <- function (x, y) {
return (x^2 + y^2)
}

我怎样才能在 3D 中绘制它的图?我想从维基百科中实现类似的效果:

http://en.wikipedia.org/wiki/File:Sphere_function_in_3D.pdf

最佳答案

尝试这个 :

fdejong <- function (x, y) {
return (x^2 + y^2)
}


x <- seq(-10, 10, length= 30)
y <- x
z <- outer(x, y, fdejong)
z[is.na(z)] <- 1
op <- par(bg = "white")
persp(x, y, z, theta = 30, phi = 30, expand = 0.5, col = "lightblue")

fdejong persp plot

关于r - 如何在 r 中绘制 3D 函数?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24065615/

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