Displays a 1-dimensional array as a lower triangular matrix.
Syntax
object.PrintTriangle (theMatrix)
object.PrintTriangle (theMatrix, title)
The PrintTriangle method syntax has the following parts:
Part |
Description |
object |
An object of type AmosDebug. |
theMatrix |
A 1-dimensional array of Double or String. |
title |
(Optional) A string that describes theMatrix. |
Remarks
PrintTriangle displays a vector x as
x(0)
x(1) x(2)
x(3) x(4) x(5)
...
Thus, the PrintTriangle method may be used when the vector contains the lower triangular portion of a symmetric matrix (see Evaluate2a and EvaluateEx2a methods example), and also when the vector contains the lower triangular portion of a lower triangular matrix.
See Also