blob: 8584f4e14dd466f6acdd2f272abab01fcb1ceb31 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
|
#pragma once
#include <iostream>
#include <iomanip>
using namespace std;
//function prototypes
void getNewMatrices(float Matrix1[3][3], float Matrix2[3][3]);
void addMatrices(float Matrix1[3][3], float Matrix2[3][3]);
|