Prints an nRow by nColumn matrix with specified format for HTML output.

Namespace: Imsl.Math
Assembly: ImslCS (in ImslCS.dll) Version: 6.5.0.0

Syntax

C#
public void PrintHTML(
	PrintMatrixFormat pmf,
	Object array,
	int nRows,
	int nColumns
)
Visual Basic (Declaration)
Public Sub PrintHTML ( _
	pmf As PrintMatrixFormat, _
	array As Object, _
	nRows As Integer, _
	nColumns As Integer _
)
Visual C++
public:
void PrintHTML(
	PrintMatrixFormat^ pmf, 
	Object^ array, 
	int nRows, 
	int nColumns
)

Parameters

pmf
Type: Imsl.Math..::.PrintMatrixFormat
A PrintMatrixFormat matrix format.
array
Type: System..::.Object
The Matrix to be printed.
nRows
Type: System..::.Int32
An int specifying the number of rows in the matrix.
nColumns
Type: System..::.Int32
An int specifying the number of columns in the matrix.

See Also