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

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

Introduction

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

The text is from its open source code.

Constructor

DiagonalMatrix(final int dimension)
Creates a matrix with the supplied dimension.
DiagonalMatrix(final double[] d)
Creates a matrix using the input array as the underlying data.

Method

doublegetEntry(final int row, final int column)
DiagonalMatrixmultiply(final DiagonalMatrix m)
Returns the result of postmultiplying this by m .
RealMatrixmultiply(final RealMatrix m)
Returns the result of postmultiplying this by m .
voidsetEntry(final int row, final int column, final double value)