Java程序对两个矩阵相加

我们可以使用二进制+运算符在Java中对两个矩阵进行相加。矩阵也称为数组数组。我们可以加,减和乘矩阵。

要减去两个矩阵,请使用-运算符。让我们看一个简单的示例,对两个3行3列的矩阵进行相加。

/**
 * 一点教程网: http://www.yiidian.com
 */
public class MatrixAdditionExample{  
public static void main(String args[]){  
//creating two matrices    
int a[][]={{1,3,4},{2,4,3},{3,4,5}};    
int b[][]={{1,3,4},{2,4,3},{1,2,4}};    
    
//creating another matrix to store the sum of two matrices    
int c[][]=new int[3][3];  //3 rows and 3 columns  
    
//adding and printing addition of 2 matrices    
for(int i=0;i<3;i++){    
for(int j=0;j<3;j++){    
c[i][j]=a[i][j]+b[i][j];    //use - for subtraction  
System.out.print(c[i][j]+" ");    
}    
System.out.println();//new line    
}    
}}  

以上代码输出结果为:

2 6 8
4 8 6
4 6 9

 

 

热门文章

优秀文章