notes

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs

commit ee5ab77051277db5d1e1bea46ba7e1f7e7a8723f
parent 9c209bdc284af837c7d307f3094289d1b84def4c
Author: Andrew <andrewlaack1@gmail.com>
Date:   Wed, 10 Jul 2024 11:35:17 -0500

Remove broken note

Diffstat:
D;:w | 19-------------------
1 file changed, 0 insertions(+), 19 deletions(-)

diff --git a/;:w b/;:w @@ -1,19 +0,0 @@ -:lin-alg: -# Vector Matrix Multiplication - -Reading - -## Notes - -**Definition:** Vector matrix multiplication can be performed by taking the combination of the first column of the matrix with the first top row of the vector and then repeating this throughout. - -As described above: - -``` - -[2 1] [c] = [2c + 1d] = cv + dw -[4 2] [d] [4c + 2d] - - -``` -Where the vector [2,4] is v and [1,2] is w.