vectorialOperations {Rpdb}R Documentation

Basic Vectorial Operations

Description

Basic vectorial operations such as scalar product and vectorial product

Usage

dotProd(U, V)

vectNorm(U)

rotVect(U, n = 1)

vectProd(U, V)

Arguments

U

a numeric vector of length 3.

V

a numeric vector of length 3.

n

an integer.

Value

See Also

matmult

Examples

Vx <- c(3,0,0)
vectNorm(Vx)
Vx <- Vx / vectNorm(Vx)
Vy <- c(0,1,0)
Vz <- vectProd(Vx, Vy)
print(Vz)


[Package Rpdb version 2.3.4 Index]