R/G3S.R

Defines functions G3S

Documented in G3S

##  Gram-Schmidt process convert (x,y,z) into orthogonal (u,v,w).
## The output is a matrix with columns (u,v,w).

G3S <- function(x,y,z){
  u <- x
  v <- y-myGS(u,y)
  w <- z- myGS(u,z)-myGS(v,z)
  A <- matrix(cbind(u,v,w),nrow =3, byrow=FALSE)
  return(A)
}

Try the Tex4exams package in your browser

Any scripts or data that you put into this service are public.

Tex4exams documentation built on May 31, 2023, 8:04 p.m.