From 8a7399df4883387cf2c6b22a23e309e3ebdf3fbd Mon Sep 17 00:00:00 2001 From: Micke Nordin Date: Sat, 16 Jul 2022 12:12:37 +0000 Subject: [PATCH] Update 'README.md' --- README.md | 21 ++++++++++++++++++++- 1 file changed, 20 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 0ef8496..7f91382 100644 --- a/README.md +++ b/README.md @@ -1,2 +1,21 @@ # matrices - +This is a matrix class. +``` +g++ -o matrix matrix.cpp +./matrix +``` +The output: +``` +The matrix m: +| 7 | 5 | i | +| 0 | 2 | 0 | +| -i | 0 | 4 | +The matrix m's transpose: +| 7 | 0 | -i | +| 5 | 2 | 0 | +| i | 0 | 4 | +The matrix m is not hermitian, here is the hermitian conjugate: +| 7 | 0 | i | +| 5 | 2 | 0 | +| -i | 0 | 4 | +``` \ No newline at end of file