Skip to content

Commit

Permalink
Fixed matrix rendering
Browse files Browse the repository at this point in the history
  • Loading branch information
bovem committed Jul 2, 2024
1 parent 86c0a3c commit f73e6dc
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion content/posts/linear-algebra/tensors/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,9 @@ $$x - 2y = 6$$
$$ x - y = 4 $$
$$ x + y = 0 $$
could be represented using a matrix as
$$ \begin{bmatrix} 1 & -2 & 6 \\ 1 & -1 & 4\\ 1 & 1 & 0\end{bmatrix}$$

$$ \begin{bmatrix} 1 & -2 & 6 \\\ 1 & -1 & 4 \\\ 1 & 1 & 0 \end{bmatrix}$$

This matrix has three rows and three columns. Thus, its **order** will be $3 \times 3$.
A matrix with one row or one column could be called a matrix or vector interchangeably.

Expand Down

0 comments on commit f73e6dc

Please sign in to comment.