matrix.is_triangular() - Pine Script Function
matrix.is_triangular()
Section titled “matrix.is_triangular()”Overview
Section titled “Overview”The function determines if the matrix is triangular (if all elements above or below the main diagonal are zero).
Syntax
Section titled “Syntax”matrix.is_triangular(id) → series boolParameters
Section titled “Parameters”| Name | Type | Description |
|---|---|---|
| id | matrix<int/float> | Matrix object to test. |
Returns
Section titled “Returns”Returns true if the id matrix is triangular, false otherwise.
Remarks
Section titled “Remarks”- Returns false with non-square matrices.