mirror of
https://github.com/Steffo99/appunti-magistrali.git
synced 2024-11-22 10:44:17 +00:00
22 lines
532 B
Markdown
22 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}
|
||
|
$$
|