Package | Description |
---|---|
dev.nm.algebra.linear.matrix.doubles.operation |
Modifier and Type | Method and Description |
---|---|
ElementaryOperation |
ElementaryOperation.addColumn(int j1,
int j2,
double c)
Column addition:
A[, j1] = A[, j1] + c * A[, j2]
|
ElementaryOperation |
ElementaryOperation.addRow(int i1,
int i2,
double c)
Row addition:
A[i1, ] = A[i1, ] + c * A[i2, ]
|
ElementaryOperation |
ElementaryOperation.scaleColumn(int j,
double c)
Scale a column:
A[, j] = c * A[, j]
|
ElementaryOperation |
ElementaryOperation.scaleRow(int i,
double c)
Scale a row:
A[i, ] = c * A[i, ]
|
ElementaryOperation |
ElementaryOperation.swapColumn(int j1,
int j2)
Swap columns:
|
ElementaryOperation |
ElementaryOperation.swapRow(int i1,
int i2)
Swap rows:
|
Copyright © 2010-2020 NM FinTech Ltd.. All Rights Reserved.