Java org.apache.commons.math3.linear Array2DRowRealMatrix fields, constructors, methods, implement or subclass

Example usage for Java org.apache.commons.math3.linear Array2DRowRealMatrix fields, constructors, methods, implement or subclass

Introduction

In this page you can find the methods, fields and constructors for org.apache.commons.math3.linear Array2DRowRealMatrix.

The text is from its open source code.

Subclass

org.apache.commons.math3.linear.Array2DRowRealMatrix has subclasses.
Click this link to see all its subclasses.

Constructor

Array2DRowRealMatrix(final double[][] d)
Create a new RealMatrix using the input array as the underlying data array.
Array2DRowRealMatrix(final double[] v)
Create a new (column) RealMatrix using v as the data for the unique column of the created matrix.
Array2DRowRealMatrix(final int rowDimension, final int columnDimension)
Create a new RealMatrix with the supplied row and column dimensions.
Array2DRowRealMatrix(final double[][] d, final boolean copyArray)
Create a new RealMatrix using the input array as the underlying data array.
Array2DRowRealMatrix()
Creates a matrix with no data

Method