請我想了解矩陣計算。 和我的問題可能看起來很簡單,但請您需要一個答案 可以簡單地向我解釋什麼是RHS矢量。 我經常看到它在Apache下議院數學庫 例如我得到這個從計算器頁面中使用:什麼是RHS矢量
public class LinearAlgebraDemo
{
public static void main(String[] args)
{
double [][] values = {{1, 1, 2}, {2, 4, -3}, {3, 6, -5}};
double [] rhs = { 9, 1, 0 }; /* RHS Vector */
RealMatrix a = new Array2DRowRealMatrix(values);
DecompositionSolver solver = new LUDecompositionImpl(a).getSolver();
RealVector b = new ArrayRealVector(rhs);
RealVector x = solver.solve(b);
RealVector residual = a.operate(x).subtract(b);
double rnorm = residual.getLInfNorm();
}
}
有人可以解釋這個密碼給我,尤其是RHS向量及其用途。 非常感謝。
右側? –
@GregHewgill作爲答案發布,所以我可以upvote。 – oldrinb