eliminateFromPivot MethodStatic
- in rowB, replace rowB[j] += a * rowB[pivot] * rowA[j] / rowA[pivot]forj>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 366
Last Updated: 24 June, 2025
Found something wrong, missing, or unclear on this page? Raise an issue in our repo.