当前位置: 首页 > 工具软件 > UJMP > 使用案例 >

java ujmp库矩阵计算--Matrix

百里诚
2023-12-01

1.如果项目是maven类型,在pom.xml中引入依赖

必须引入的依赖
<dependency>
<groupId>org.ujmp</groupId>
<artifactId>ujmp-core</artifactId>
<version>0.3.0</version>
</dependency>
提供可视化gui,可选
<dependency>
<groupId>org.ujmp</groupId>
<artifactId>ujmp-gui</artifactId>
<version>0.3.0</version>
</dependency>

2.创建矩阵

Matrix.Factory.zeros(rows, cols); // 创建初始值为0的Matrix矩阵
Matrix.Factory.ones(rows, cols); // 创建初始值为1的Matrix矩阵
DoubleMatrix.Factory.zeros(rows, cols); // 指定具体的类型为DoubleMatrix类型,则元素为double型

3.基本函数

Matrix matrix = Matrix.Factory.zeros(5, 5);
Matrix transpose = matrix.transpose(); // 矩阵转置
Matrix add = matrix.plus(transpose); // 矩阵加法
Matrix minus = matrix.minus(transpose); // 矩阵减法
Matrix mtimes = matrix.mtimes(transpose); // 矩阵乘法
Matrix times = matrix.times(2); // 矩阵elementwise乘法
matrix.nromF();//求向量 
mat.inv(); // 矩阵求逆
mat.det(); // 矩阵的determinant
 类似资料: