| This class represents an optimized
Matrix matrix implementation
for
Float64 64 bits floating-point numbers.
Instances of this class can be created from
Float64Vector ,
either as rows or columns if the matrix is transposed. For example:[code]
Float64Vector column0 = Float64Vector.valueOf(...);
Float64Vector column1 = Float64Vector.valueOf(...);
Float64Matrix M = Float64Matrix.valueOf(column0, column1).transpose();
[/code]
author: Jean-Marie Dautelle version: 3.3, January 2, 2007 |