aboutsummaryrefslogtreecommitdiff
path: root/project3/notes.txt
diff options
context:
space:
mode:
Diffstat (limited to 'project3/notes.txt')
-rw-r--r--project3/notes.txt27
1 files changed, 27 insertions, 0 deletions
diff --git a/project3/notes.txt b/project3/notes.txt
new file mode 100644
index 0000000..14a811f
--- /dev/null
+++ b/project3/notes.txt
@@ -0,0 +1,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 \ No newline at end of file