作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我想使用 Colt 库求解线性方程matrix*X=D。我尝试过:
DoubleMatrix2D matrix;
matrix = new DenseDoubleMatrix2D(4,4);
for (int row = 0; row < 4; row++) {
for (int column = 0; column < 4; column++) {
// We set and get a cell value:
matrix.set(row,column,row+column);
}
}
DoubleMatrix2D D;
D = new DenseDoubleMatrix2D(4,1);
D.set(0,0, 1.0);
D.set(1,0, -1.0);
D.set(2,0, 91.0);
D.set(3,0, -5.0);
DoubleMatrix2D X;
X = solve(matrix,D);
但我收到错误
“方法solve(DoubleMatrix2D, DoubleMatrix2D)对于类型Test来说是未定义的”,其中 Test 是类的名称。
我做错了什么?有什么想法吗?...
最佳答案
您收到此错误的原因是因为方法 solve()
是非静态的,无法从 main()
访问。
这应该可以解决您的问题:
Algebra algebra = new Algebra();
DoubleMatrix2D X = algebra.solve(matrix, D);
关于java - 如何使用java中的colt库求解线性方程组,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19357895/
目标 给定一组点,我试图找出满足所提供所有点的线性方程的系数。 例如,如果我想求线性方程 (ax + by + c = z): 3x + 2y + 2 = z 我至少需要三个三维点: (2, 2, 1
我是一名优秀的程序员,十分优秀!