eliminateFromPivot MethodStatic
In rowB, replace rowB[j] += a * rowB[pivot] * rowA[j] / rowA[pivot]
for j > pivot
eliminateFromPivot(rowA: Float64Array, pivotIndex: number, rowB: Float64Array, a: number): boolean
Parameter | Type | Description |
---|---|---|
rowA | Float64Array | row that does not change |
pivotIndex | number | index of pivot (divisor) in rowA. |
rowB | Float64Array | row where elimination occurs. |
a | number |
Returns - boolean
Defined in
- numerics/SmallSystem.ts Line 423
Last Updated: 07 June, 2025
Found something wrong, missing, or unclear on this page? Raise an issue in our repo.