java - 如何修复 Jama 中的 ArrayIndexOutOfBounds 错误?

标签 java math indexoutofboundsexception jama

我正在为矩阵使用 jama 库。我使用了以下矩阵,但是当我尝试获取 S 时,它给了我错误。

1.0    1.0    0.0    1.0    0.0    0.0    0.0    0.0    0.0   11.0    1.0
1.0    0.0    0.0    0.0    0.0    0.0    1.0    0.0    0.0   12.0    2.0
1.0    1.0    0.0    0.0    0.0    0.0    0.0    0.0    1.0   13.0    3.0

当我尝试获取 S 时,它产生了以下错误。

Exception in thread "main" java.lang.ArrayIndexOutOfBoundsException: 4
    at Jama.SingularValueDecomposition.getS(SingularValueDecomposition.java:507)
    at SVD2.main(SVD2.java:19)

这是代码

public class SVD2 {
    public static void main(String[] args) {
        double[][] vals = {
              {1,1,0,1,0,0,0,0,0,11,1},
              {1,0,0,0,0,0,1,0,0,12,2},
              {1,1,0,0,0,0,0,0,1,13,3}
              };
        Matrix A = new Matrix(vals,3,11);
        System.out.println("The Matrix A is ");
        A.print(11, 2);
        System.out.println();

        System.out.println("The SVD of A is ");
        SingularValueDecomposition svd = A.svd();
        Matrix S = svd.getS();       
    }

}

最佳答案

对于 Jama 的 奇异值分解,the number of rows must not be less than the number of columns .也许您应该在您提供的矩阵的转置上尝试 SVD。

编辑:这是来自 SingularValueDecomposition.java 的相关代码:

   public Matrix getS () {
      Matrix X = new Matrix(n,n);
      double[][] S = X.getArray();
      for (int i = 0; i < n; i++) {
         for (int j = 0; j < n; j++) {
            S[i][j] = 0.0;
         }
         S[i][i] = this.s[i];
      }
      return X;
   }

S 构造为 n x n 数组,因此 ArrayIndexOutOfBoundsException 的唯一可能来源是对 this 的引用.s[i].

s 的空间在 SingularValueDecomposition 构造函数中初始化(amd 没有其他地方),如下所示:

s = new double [Math.min(m+1,n)];

因此 Jama 实现将适用于 2x3 输入(与他们在类 javadoc 中所说的相矛盾)。但我敢打赌它不适用于 2x4 输入。

关于java - 如何修复 Jama 中的 ArrayIndexOutOfBounds 错误?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2112987/

相关文章:

java - 如何像横版卷轴游戏那样换行?

php - 遍历随机排序数组时的概率算法

Java:生成一定范围内的数字序列?

java - 基于 DatagramPacket 的应用程序中的 ArrayIndexOutOfBoundsException

java - 开启以数字开头的双字符字符串

c - 找出数字的总和

android - 转换从 Android 中的 BufferedReader 读取的 char[] 时出现 StringIndexOutOfBoundsException

java - 使用 Hibernate 从 Postgres 枚举到 Java

java - 保存和加载(Java)程序的状态

java - java中不兼容的类型