gpt4 book ai didi

java - 如何在 Java 中创建任意大小的单位矩阵?

转载 作者:行者123 更新时间:2023-12-01 06:29:11 27 4
gpt4 key购买 nike

是否有一个实用程序可以在 Java 中创建指定大小的单位矩阵?

最佳答案

尝试Apache Commons Math for commonly used linear algebra :

// Set dimension to the size of the square matrix that you would like
// Example, this will make a 3x3 matrix with ones on the diagonal and
// zeros elsewhere.
int dimension = 3;
RealMatrix identity = RealMatrix.createRealIdentityMatrix(dimension);

关于java - 如何在 Java 中创建任意大小的单位矩阵?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/1374639/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com