|
|
||
|
|
| Mathematica Tutorial | |Functions » |
| v[[i]] or Part[v,i] | give the ith element in the vector v |
| c v | scalar multiplication of c times the vector v |
| u.v | dot product of two vectors |
| Norm[v] | give the norm of v |
| Normalize[v] | give a unit vector in the direction of v |
| Standardize[v] | shift v to have zero mean and unit sample variance |
| Standardize[v,f1] | shift v by f1[v] and scale to have unit sample variance |
|
|
|
|
|
|
|
|
|
| Projection[u,v] | give the orthogonal projection of u onto v |
| Orthogonalize[{v1,v2,...}] | generate an orthonormal set from the given list of vectors |
|
|
|
|
When one of the vectors is linearly dependent on the vectors preceding it, the corresponding position in the result will be a zero vector.
|