From f680e58d81d1c57135a7ce4da19369b881e0d8f7 Mon Sep 17 00:00:00 2001 From: David Rotermund <54365609+davrot@users.noreply.github.com> Date: Sat, 6 Jan 2024 16:56:43 +0100 Subject: [PATCH] Update README.md Signed-off-by: David Rotermund <54365609+davrot@users.noreply.github.com> --- matlab/3/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/matlab/3/README.md b/matlab/3/README.md index 9606bb7..6e70888 100644 --- a/matlab/3/README.md +++ b/matlab/3/README.md @@ -37,7 +37,7 @@ A major advantage of Matlab in comparison to a conventional programming language | | | | | ------------- |:-------------:|:-------------:| -| `a = [3;1];` | defines a column vector | $\vec{a} = \left(\begin{matrix}3 & 1 \end{matrix}\right)$ | +| `a = [3;1];` | defines a column vector | $\vec{a} = \left(\begin{pmatrix}3 \ 1 \end{pmatrix}\right)$ | | `a(k)` | means the vector component | $a_k$ | | `b = [0,3,-4];` | defines a row vector | $\vec{b} = (0,3,-4)$ |