Solves Ax=y for x where A is lower triangular.
Syntax
object.InstantSolve (N, A, x, errorflag)
The InstantSolve property syntax has the following parts:
Part |
Description |
object |
An object of type AmosRanGen. |
N |
Input of type Integer. The number of rows in the matrix a. |
A |
Input array of length N*(N+1)/2, of type Double. A contains the first element of the first row, the first two elements of the second row, and so on. The first element of A is passed by reference. |
x |
Input and output array of length N, of type double. The first element of x is passed by reference. |
errorflag |
Output, of type Integer. If the system of linear equations was successfully solved, errorflag=0. Otherwise, errorflag=1. |