gpt4 book ai didi

r - 将 xyz 给定的平面转换为 R 中的 xy 坐标(3D 到 2D)

转载 作者:行者123 更新时间:2023-12-02 07:46:52 24 4
gpt4 key购买 nike

我的问题很简单!如何将点 xyz 坐标(全部属于单个平面)转换为 xy 坐标。 我找不到任何 R 函数或 R 解。

enter image description here

源数据:

# cube with plain
library(scatterplot3d)
my.plain <- data.frame(ID = c("A","B","C","D","E","F","G","H"),
x = c(1,1,1,2,2,2,3,3),
y = c(1,1,1,2,2,2,3,3),
z = c(1,2,3,1,2,3,1,2))

scatterplot3d(my.plain$x, my.plain$y, my.plain$z,
xlim = c(0,3), ylim = c(0,3), zlim = c(0,3))

如何获取点的 data.frame,其中点 A 为 [0,0],而 A 和 D 之间的距离为 sqrt(2)?

最佳答案

所以你现在拥有的是共面点的 3D 坐标(你确实可以通过计算矩阵的秩来验证你的点是否共面 my.plain[, c("x", "y", "z")],即 2)。

您希望新的“框架”由点 A 定义为原点和向量 (A->B)/|A->B|^2(A-> D)/|A->D|^2.

要将 xyz 坐标转换为新“框架”中的坐标,您需要将之前的坐标(移动 A 的坐标)乘以从旧框架到新框架的变换矩阵。

因此,在 R 代码中,这给出:

# Get a matrix out of your data.frame
row.names(my.plain) <- my.plain$ID
my.plain <- as.matrix(my.plain[, -1])

# compute the matrix of transformation
require(Matrix)
AB <- (my.plain["B", ] - my.plain["A", ])
AD <- (my.plain["D", ] - my.plain["A", ])
tr_mat <- cbind(AD/norm(AD, "2"), AB/norm(AB, "2"))

# compute the new coordinates
my.plain.2D <- (my.plain - my.plain["A", ]) %*% tr_mat

# plot the 2D data
plot(my.plain.2D, pch=19, las=1, xlab="x", ylab="y")

# and the plot with the letters, the polygon and the color:
plot(my.plain.2D, pch=3, las=1, xlab="x", ylab="y")
polygon(my.plain.2D[c("A", "B", "C", "F", "H", "G", "D"), ], col="magenta")
points(my.plain.2D, pch=3, lwd=2)
text(my.plain.2D[, 1], my.plain.2D[, 2], row.names(my.plain.2D), pos=2, font=2)

enter image description here

关于r - 将 xyz 给定的平面转换为 R 中的 xy 坐标(3D 到 2D),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28944050/

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