From f58f6d03a65380de31f31d652feac63989383422 Mon Sep 17 00:00:00 2001 From: Jidong Xiao Date: Thu, 21 Sep 2023 23:36:43 -0400 Subject: [PATCH] add image into readme --- hws/03_matrix_class/README.md | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/hws/03_matrix_class/README.md b/hws/03_matrix_class/README.md index f7d33f7..92a2445 100644 --- a/hws/03_matrix_class/README.md +++ b/hws/03_matrix_class/README.md @@ -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