vault backup: 2024-02-09 09:19:57

This commit is contained in:
zleyyij 2024-02-09 09:19:57 -07:00
parent 8deb7e3d62
commit decd0308c7
2 changed files with 7 additions and 2 deletions

View File

@ -2,7 +2,7 @@
"commitMessage": "vault backup: {{date}}",
"autoCommitMessage": "vault backup: {{date}}",
"commitDateFormat": "YYYY-MM-DD HH:mm:ss",
"autoSaveInterval": 1,
"autoSaveInterval": 5,
"autoPushInterval": 0,
"autoPullInterval": 5,
"autoPullOnBoot": false,

View File

@ -12,3 +12,8 @@ $$
4 & 5 & 6|5
\end{bmatrix}
$$
## Multiplying matrices
To multiply two matrices, the number of columns for the first option must match the number of columns in the second.
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,