Update README.md

This commit is contained in:
2026-06-19 10:19:27 +02:00
parent a7cac712a1
commit 96d9a2c021
+8
View File
@@ -109,5 +109,13 @@ Status s = add_inplace(A, B); // modify A itself
or overloading?
```
```text
Scalar, Vector and Matrix; All in one file or?
Matrix C = mul(A, B); // allocate/return result
Status s = mul_into(A, B, C); // write into existing matrix
Status s = add_inplace(A, B); // modify A itself
or overloading?
```