Update README.md

This commit is contained in:
2026-06-19 10:16:40 +02:00
parent b60ed0ba42
commit a7cac712a1
+11
View File
@@ -100,3 +100,14 @@ modules/
mul_omp.h mul_omp.h
sqrt.h sqrt.h
``` ```
```text
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?
```