Used to compute  z = Ap where A is the matrix of coefficients to solve and p and z are arrays of length n, the order of matrix A.

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

Syntax

C#
void Amultp(
	double[] p,
	double[] z
)
Visual Basic (Declaration)
Sub Amultp ( _
	p As Double(), _
	z As Double() _
)
Visual C++
void Amultp(
	array<double>^ p, 
	array<double>^ z
)

Parameters

p
Type: array< System..::.Double >[]()[]
An input double array of length n generated during the implementation of the Solve method.
z
Type: array< System..::.Double >[]()[]
An output double array of length n.

See Also