1

我正在编写一个逆矩阵的程序,所以我将结果存储在

double matrix[][] = new double[n][2*n];

当我在 consol 中打印结果时,它会是正确的,但现在我尝试改进程序,我想在其中打印数组

JOptionPane.showMessageDialog

所以我写

StringBuilder builder = new StringBuilder(n*n);
for (i = 0; i < n; i++){
    for(j = 0; j < n; j++){
        builder.append(matrix[i][j]);
        builder.append(",");
    }
    builder.append("\n");
}
JOptionPane.showMessageDialog(null, builder.toString(), "The inverse matrix is:", JOptionPane.INFORMATION_MESSAGE);

现在问题输出应该是双倍的,例如这样

-0.14285714285714285    0.2857142857142857
0.4285714285714286  -0.35714285714285715    

但是每次使用任何输入矩阵时,我都会得到相同的结果

1.0,0.0,
-0.0,1.0,

谢谢..对不起我的英语不好


好的,它解决了我将矩阵的大小保持为

double matrix[][] = new double[n][2*n];

并像 Reimeus 所说的那样通过一些修改来纠正循环

for (int j = n; j < n*2; j++) {

谢谢大家..这是这个伟大网站的第一个问题,我很快得到了答案..非常感谢

4

1 回答 1

1

我相信你的矩阵是 n*n。您需要更正这一行:

  double matrix[][] = new double[n][2*n];

  double matrix[][] = new double[n][n];

如果大小正确,请更正迭代。

对于格式化,请使用DecimalFormat如下格式化类:

 String fPattern = "0.00000000000000000"; //please supply the right format pattern
 DecimalFormat dFormat = new DecimalFormat(fPattern);
 StringBuilder builder = new StringBuilder(n*n);
 for (i = 0; i < n; i++){
    for(j = 0; j < n; j++){
      builder.append(dFormat.format(matrix[i][j]));
      builder.append(",");
    }
    builder.append("\n");
 }

0.00000000000000000如果您总是希望有固定长度的小数,请使用作为模式。如果您想要不同的长度,请使用#.#################.

于 2012-10-09T21:54:05.300 回答