day8

矩阵乘法

package test;

import java.util.Arrays;

/**
 * This is the eighth code. Nmes and comments should follow my style strictly.
 * 
 * @author Michelle
 */

public class MatrixMultiplication {
	/**
	 *
	 * Unit test for respective method.
	 * 
	 */
	public static void matrixMultiplicationTest(){
		int[][] tempFirstMatrix = new int[2][3];
		for (int i = 0; i < tempFirstMatrix.length; i++){
			for (int j = 0; j < tempFirstMatrix[0].length; j++){
				tempFirstMatrix[i][j] = i + j;
			}//Of for j
		}//Of for i
		System.out.println("The first matrix is: \r\n" + Arrays.deepToString(tempFirstMatrix));
		
		int[][] tempSecondMatrix = new int[3][2];
		for(int i = 0; i < tempSecondMatrix.length; i++){
			for(int j = 0; j < tempSecondMatrix[0].length; j++){
				tempSecondMatrix[i][j] = i * 10 + j;
			}//Of for j
		}//Of for i
		System.out.println("The second matrix is: \r\n" + Arrays.deepToString(tempSecondMatrix));
		
		
		int[][] tempThirdMatrix = multiplication(tempFirstMatrix, tempSecondMatrix);
		System.out.println("The third matrix is: \r\n" + Arrays.deepToString(tempThirdMatrix));
		
		System.out.println("Trying to multiply the first matrix with itself.\r\n");
		tempThirdMatrix = multiplication(tempFirstMatrix, tempFirstMatrix);
		System.out.println("The result matrix is: \r\n" + Arrays.deepToString(tempThirdMatrix));

	}//Of matrixMultiplicationTest

	/**
	 * 
	 * Matrix multiplication. The colums of the first matrix should be equal to the
	 * rows of the second one.
	 * 
	 * @param paraFirstMatrix The first matrix
	 * @param paraSecondMatrix The second matrix
	 * @return The result matrix.
	 * 
	 */
	//没太看懂@注释的意思
	
	public static int[][] multiplication(int[][] paraFirstMatrix, int[][] paraSecondMatrix){
		int m = paraFirstMatrix.length;
		int n = paraFirstMatrix[0].length;
		int p = paraSecondMatrix[0].length;
		
		//Step 1. Dimension check.可乘性确认
		if (paraSecondMatrix.length !=n){
			System.out.println("The two matrices cannot be multiplied");
			return null;
		}//Of if
		
		//step 2.The loop.
		int[][] resultMatrix = new int[m][p];
		for (int i = 0; i < m; i++){
			for (int j = 0; j < p;j++){
				for (int k = 0; k < n; k++){
					resultMatrix[i][j] += paraFirstMatrix[i][k] * paraSecondMatrix[k][j];
				}//Of for k
			}//Of for j
		}//Of for i
		return resultMatrix;
	}//Of matrixMultiplicationTest

}//Of class MatrixMultiplication

 

  • 2
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 2
    评论
评论 2
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值