在任何Java库中都可以使用'reshape'的MATLAB函数吗?

时间:2010-05-20 19:53:20

标签: java matlab reshape

我正在尝试使用Java中MATLAB中可用的重塑功能。 Java中是否有重构的实现?

2 个答案:

答案 0 :(得分:3)

我在sun forums上找到了这个(修改了一下)。

public class Test {

    public static void main(String[] args) {
        double[][] ori = new double[][] { {1,2,3}, {4,5,6}, {7,8,9}, {10,11,12} };
        double[][] res = reshape(ori,2,6);

        for(int i = 0;i<ori.length;i++){
            for(int j = 0;j<ori[0].length;j++){
                System.out.print(ori[i][j]+" ");
            }
            System.out.println("");
        }
        System.out.println("");
        for(int i = 0;i<res.length;i++){
            for(int j = 0;j<res[0].length;j++){
                System.out.print(res[i][j]+" ");
            }
            System.out.println("");
        }



    }

    public static double[][] reshape(double[][] A, int m, int n) {
        int origM = A.length;
        int origN = A[0].length;
        if(origM*origN != m*n){
            throw new IllegalArgumentException("New matrix must be of same area as matix A");
        }
        double[][] B = new double[m][n];
        double[] A1D = new double[A.length * A[0].length];

        int index = 0;
        for(int i = 0;i<A.length;i++){
            for(int j = 0;j<A[0].length;j++){
                A1D[index++] = A[i][j];
            }
        }

        index = 0;
        for(int i = 0;i<n;i++){
            for(int j = 0;j<m;j++){
                B[j][i] = A1D[index++];
            }

        }
        return B;
    }
}

测试输出

1.0 2.0 3.0 
4.0 5.0 6.0 
7.0 8.0 9.0 
10.0 11.0 12.0 

1.0 3.0 5.0 7.0 9.0 11.0 
2.0 4.0 6.0 8.0 10.0 12.0 

答案 1 :(得分:3)

有点晚了,但是对以后的访客来说。 有Eclipse January,支持这种操作

这是一个用于处理Java中数据的库。它部分地受到NumPy的启发,旨在提供类似的功能。

它确实支持reshape上的Dataset功能。 您可以浏览BasicExample

(以上示例中的代码)

Dataset another = DatasetFactory
                    .createFromObject(new double[] { 1, 1, 2, 3, 5, 8, 13, 21, 34 })
                    .reshape(3, 3);