public class RealMatrix extends Object
| Constructor and Description |
|---|
RealMatrix(RService service) |
RealMatrix(String pathToR,
String name) |
| Modifier and Type | Method and Description |
|---|---|
double[] |
getColumn(int column) |
double[][] |
getColumns(int[] columns) |
double[][] |
getData() |
double |
getDeterminant() |
double[] |
getDiagonal() |
int[] |
getDimensions() |
double[] |
getEigenValues() |
RealMatrix |
getEigenVectors() |
RealMatrix |
getInverse() |
RCaller |
getRCaller() |
double[] |
getRow(int row) |
double[][] |
getRows(int[] rows) |
SVD |
getSVD() |
double |
getTrace() |
RealMatrix |
getTranspose() |
RealMatrix |
product(double[][] another) |
RealMatrix |
product(RealMatrix another) |
RealMatrix |
productWithScaler(double scaler) |
void |
setData(double[][] data) |
RealMatrix |
subtract(double[][] another) |
RealMatrix |
subtract(RealMatrix another) |
RealMatrix |
sum(double[][] another) |
RealMatrix |
sum(RealMatrix another) |
public RealMatrix(RService service)
public RCaller getRCaller()
public void setData(double[][] data)
public int[] getDimensions()
public double[][] getData()
public double[] getColumn(int column)
public double[][] getColumns(int[] columns)
public double[] getRow(int row)
public double[][] getRows(int[] rows)
public double getDeterminant()
public RealMatrix getInverse()
public double[] getDiagonal()
public double getTrace()
public RealMatrix getTranspose()
public RealMatrix product(double[][] another)
public RealMatrix product(RealMatrix another)
public RealMatrix sum(double[][] another)
public RealMatrix sum(RealMatrix another)
public RealMatrix productWithScaler(double scaler)
public RealMatrix subtract(double[][] another)
public RealMatrix subtract(RealMatrix another)
public double[] getEigenValues()
public RealMatrix getEigenVectors()
public SVD getSVD()
Copyright © 2016. All rights reserved.