mirror of
https://github.com/Steffo99/appunti-magistrali.git
synced 2025-02-16 18:04:00 +00:00
21 lines
532 B
Markdown
21 lines
532 B
Markdown
[[operazione]] di [[somma]] effettuata tra due [[array|vettori]].
|
|
|
|
Consiste nel sommare i componenti uno ad uno tra loro:
|
|
$$
|
|
\def \varX {{\color{Red} \mathbf{x}}}
|
|
\def \varY {{\color{Cyan} \mathbf{y}}}
|
|
\def \varXa {{\color{Crimson} x_1}}
|
|
\def \varXb {{\color{IndianRed} x_2}}
|
|
\def \varXc {{\color{Salmon} x_3}}
|
|
\def \varYa {{\color{RoyalBlue} y_1}}
|
|
\def \varYb {{\color{DeepSkyBlue} y_2}}
|
|
\def \varYc {{\color{LightSkyBlue} y_3}}
|
|
|
|
\varX + \varY
|
|
=
|
|
\begin{bmatrix}
|
|
\varXa + \varYa\\
|
|
\varXb + \varYb\\
|
|
\varXc + \varYc
|
|
\end{bmatrix}
|
|
$$
|