blob: 14a811f616ad5cb662fc86c4664936091a7b6fb1 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
Meeting notes:
No meeting notes beccause i did this myself after several attempts to contact my partner
Agile:
Break down the project and write the pseudocode
Ill need to store two matricies and be able to add and multiply them
I need to figure out how to add and multiply matrices
Write most of the code and get it to compile
I need to convert the pseudocode to code
who do i detect an input error and format the output of a matrix
Test and debug the code I wrote
The code compiles but likely have many errors i need to fix
Figure out what pair(s) of matricies are best for testing
Testing:
add and multiply the following matrix pairs and make sure the correct answers are output without restarting the program
1 2 3 4 5 3 5 7 6 14 37 21
4 5 6 2 7 9 -> 6 12 15 38 91 57
7 8 9 2 6 0 9 14 9 62 145 93
3 0 -1 1 -5 0 4 -5 -1 3 -14 -3
0 4 2 4 1 -2 -> 4 5 0 16 2 -2
5 -3 1 0 -1 3 5 -4 4 -7 -29 9
|