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:54:49 +01:00 committed by GitHub
parent 157c035843
commit 5ea0fd8017
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{array}{c}3 & 1 \end{array}\right)$ | | `a = [3;1];` | defines a column vector | $\vec{a} = \left(\begin{matrix}3 & 1 \end{matrix}\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)$ |