JAVA学习笔记-矩阵相加

Posted iamAnonymous

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了JAVA学习笔记-矩阵相加相关的知识,希望对你有一定的参考价值。

package MyDuoWeiShuZu;

public class Mycode {

public static void show(int[][] c){
  for(int j=0;j<c.length;j++){
    for(int i=0;i<c.length;i++){
      System.out.print(c[j][i]+"\t");
    }
    System.out.println();
  }
}

public static int[][] add(int[][] a,int[][] b){
  int[][] c = new int[a.length][a.length];
  for(int i=0;i<a.length;i++){
    for(int j=0;j<a.length;j++){
      c[i][j]=a[i][j]+b[i][j];
    }
  }
  return c;
}

public static void main(String[] args){


  int[][] a = {
        {1,2},
        {3,4}
        };
  int[][] b = {
        {1,2},
        {3,4}
        };
  show(add(a,b));
}
}

 

输出结果:

2   4
6   8


































以上是关于JAVA学习笔记-矩阵相加的主要内容,如果未能解决你的问题,请参考以下文章

CNN基础转置卷积学习笔记

Java学习笔记之七java函数的语法规则总结

《南溪的目标检测学习笔记》——特征融合的学习笔记

学习笔记:矩阵

java之学习笔记-day1-欢迎大家来更正!

Directx11学习笔记 基本的数学知识----矩阵篇