Update README.md

This commit is contained in:
2026-06-19 10:16:40 +02:00
parent b60ed0ba42
commit a7cac712a1
+12 -1
View File
@@ -99,4 +99,15 @@ modules/
sqrt_omp.h sqrt_omp.h
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?
```