Exemple #1
0
 public Svd(KeyedRowColumnMatrix <TRowKey, TColumnKey> matrix, bool computeVectors)
 {
     data = matrix.Clone();
     this._underlyingSvd = new DenseSvd((DenseMatrix)data.ToMatrix(), computeVectors);
 }