matrix.is_antisymmetric() - Pine Script Function
matrix.is_antisymmetric()
Section titled “matrix.is_antisymmetric()”Overview
Section titled “Overview”The function determines if a matrix is antisymmetric (its transpose equals its negative).
Syntax
Section titled “Syntax”matrix.is_antisymmetric(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 antisymmetric, false otherwise.
Remarks
Section titled “Remarks”- Returns false with non-square matrices.