add image into readme

This commit is contained in:
Jidong Xiao
2023-09-21 23:36:43 -04:00
parent ce5c977b1e
commit f58f6d03a6

View File

@@ -12,10 +12,7 @@ A matrix is a two-dimensional arrangement of numbers. In this assignment we will
contains doubles. We refer to the size of a matrix with m rows and n columns as an m×n matrix. For
example, shown below is a 4×3 matrix:
| -6 10 1 |
| 3 -8 22 |
| -17 4 7 |
| 2 5 0 |
![alt text](matrix1.png "4*3 matrix")
We will represent the data inside our Matrix class by using a two-dimensional array. Because a matrix may
be any size, you will need to use dynamic memory for this task. The same matrix shown above can be