Uses of Class
ucar.ma2.MAVector

Packages that use MAVector
ucar.ma2 Multidimensional arrays of primitives and objects with data stored in memory. 
 

Uses of MAVector in ucar.ma2
 

Methods in ucar.ma2 that return MAVector
 MAVector MAMatrix.column(int j)
          Get the jth column, return as a MAVector: same backing store.
 MAVector MAVector.copy()
          Create a new MAVector that is the same as this one, with a copy of the backing store.
 MAVector MAMatrix.dot(MAVector v)
          Dot product of matrix and vector: return M dot v
 MAVector MAMatrix.row(int i)
          Get the ith row, return as a MAVector: same backing store.
 

Methods in ucar.ma2 with parameters of type MAVector
 double MAVector.cos(MAVector v)
          Cos between two vectors = dot(v) / norm() * norm(v)
 double MAVector.dot(MAVector v)
          Dot product of 2 vectors
 MAVector MAMatrix.dot(MAVector v)
          Dot product of matrix and vector: return M dot v
 void MAMatrix.postMultiplyDiagonal(MAVector diag)
          Matrix multiply by a diagonal matrix, store result in this: this = this * diag
 void MAMatrix.preMultiplyDiagonal(MAVector diag)
          Matrix multiply by a diagonal matrix, store result in this: this = diag * this
 



Copyright © 1999-2011 UCAR/Unidata. All Rights Reserved.