vault backup: 2024-02-13 09:38:36

This commit is contained in:
zleyyij 2024-02-13 09:38:36 -07:00
parent 1f92e273e6
commit 8101c24109

View File

@ -30,6 +30,7 @@ $$
$$ $$
When multiplying two matrices together, you're going to go row by column, just like the order. You'll multiply the first entry in the row of the first matrix by the first entry in the column of the second matrix.
%% To get answers, go through each entry in the second matrix, entry by entry, and multiply by every item in the matching row of the first one, then add all of those together. %% %% To get answers, go through each entry in the second matrix, entry by entry, and multiply by every item in the matching row of the first one, then add all of those together. %%