用Java实现逆矩阵运算 Inverse of a square matrix in Java

本文介绍了如何使用Java实现逆矩阵运算。通过提供的方法inverse(),可以计算输入矩阵的逆矩阵,并给出了两个示例,展示了不同输入矩阵的逆矩阵计算结果。
摘要由CSDN通过智能技术生成

Implement the following method to obtain an inverse of the matrix: 

        public static double[ ][ ] inverse(double[ ][ ] A) 

Sample 1
Enter a11, a12, a13, a21, a22, a23, a31, a32, a33: 1 2 1 2 3 1 4 5 3
-2.0 0.5 0.5 
1.0 0.5 -0.5 
1.0 -1.5 0.5 


Sample 2 
Enter a11, a12, a13, a21, a22, a23, a31, a32, a33: 1 4 2 2 5 8 2 1 8
2.0 -1.875 1.375 
0.0 0.25 -0.25 
-0.5 0.4375 -0.1875 

/**
 * 
 * InverseMatrix.java : Compute the inverse of matrix 3x3.
 *
 */

import java.util.Scanner;

public class InverseMatrix {

    public static void main(String[] args) {
        Scanner input = new Scanner(System.in);

        final int N = 3;
        double[][] A = new double[N][N];

        System.out.print("Enter a11, a12, a13, a21, a22, a23, a31, a32, a33: ");
        for (int i = 0; i < A.length; ++i)
            for 
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值