(gram-schmidt) ( v seq -- newseq )


Vocabulary
math.matrices

Definition
USING: kernel math.vectors sequences ;

IN: math.matrices

: (gram-schmidt) ( v seq -- newseq ) [ dupd proj v- ] each ;