Update README.md

Signed-off-by: David Rotermund <54365609+davrot@users.noreply.github.com>
This commit is contained in:
David Rotermund 2024-01-06 16:56:57 +01:00 committed by GitHub
parent f680e58d81
commit ced9664d54
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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{pmatrix}3 \ 1 \end{pmatrix}\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$ | | `a(k)` | means the vector component | $a_k$ |
| `b = [0,3,-4];` | defines a row vector | $\vec{b} = (0,3,-4)$ | | `b = [0,3,-4];` | defines a row vector | $\vec{b} = (0,3,-4)$ |