Skip to content

Commit a463205

Browse files
committed
Implemented solve for double[] RHS in complex lu decomposition
1 parent 31e2ab1 commit a463205

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main/java/com/wildbitsfoundry/etk4j/math/linearalgebra/ComplexLUDecompositionDense.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -123,7 +123,7 @@ public ComplexMatrixDense getU() {
123123

124124
@Override
125125
public ComplexMatrix solve(double[] b) {
126-
return null;
126+
return solve(ComplexMatrixDense.fromRealMatrix(new MatrixDense(b, b.length)));
127127
}
128128

129129
/**

0 commit comments

Comments
 (0)