R - Compute Cross Product of Vectors (Physics)

ⅰ亾dé卋堺 提交于 2019-12-06 04:28:28

问题


What am I doing wrong?

> crossprod(1:3,4:6)
     [,1]
[1,]   32

According to this website:http://onlinemschool.com/math/assistance/vector/multiply1/

It should give:

{-3; 6; -3}

See also What is R's crossproduct function?


回答1:


Here is a generalized cross product:

xprod <- function(...) {
  args <- list(...)

  # Check for valid arguments

  if (length(args) == 0) {
    stop("No data supplied")
  }
  len <- unique(sapply(args, FUN=length))
  if (length(len) > 1) {
    stop("All vectors must be the same length")
  }
  if (len != length(args) + 1) {
    stop("Must supply N-1 vectors of length N")
  }

  # Compute generalized cross product by taking the determinant of sub-matricies

  m <- do.call(rbind, args)
  sapply(seq(len),
         FUN=function(i) {
           det(m[,-i,drop=FALSE]) * (-1)^(i+1)
         })
}

For your example:

> xprod(1:3, 4:6)
[1] -3  6 -3

This works for any dimension:

> xprod(c(0,1)) # 2d
[1] 1 0
> xprod(c(1,0,0), c(0,1,0)) # 3d
[1] 0 0 1
> xprod(c(1,0,0,0), c(0,1,0,0), c(0,0,1,0)) # 4d
[1]  0  0  0 -1

See https://en.wikipedia.org/wiki/Cross_product




回答2:


crossprod does the following: t(1:3) %*% 4:6

Therefore it is a 1x3 vector times a 3x1 vector --> a scalar




回答3:


crossprod computes a Matrix Product. To perform a Cross Product, either write your function, or:

> install.packages("pracma") 
> require("pracma")
> cross(v1,v2)

if the first line above does not work, try this:

> install.packages("pracma", repos="https://cran.r-project.org/web/packages/pracma/index.html”)



回答4:


crossProduct <- function(ab,ac){
  abci = ab[2] * ac[3] - ac[2] * ab[3];
  abcj = ac[1] * ab[3] - ab[1] * ac[3];
  abck = ab[1] * ac[2] - ac[1] * ab[2];
  return (c(abci, abcj, abck))
}


来源:https://stackoverflow.com/questions/36798301/r-compute-cross-product-of-vectors-physics

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!