From a7cac712a1da8dde371a288e9a1ef291d5408f63 Mon Sep 17 00:00:00 2001 From: Bausager Date: Fri, 19 Jun 2026 10:16:40 +0200 Subject: [PATCH] Update README.md --- README.md | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index c324857..baaf459 100644 --- a/README.md +++ b/README.md @@ -99,4 +99,15 @@ modules/ sqrt_omp.h mul_omp.h sqrt.h -``` \ No newline at end of file +``` + + +```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? +``` + + +