2024-08-20 03:06:21 +00:00
|
|
|
[[operazione]] di [[somma]] effettuata tra due [[array|vettori]].
|
2024-08-23 11:13:05 +00:00
|
|
|
$$
|
|
|
|
\Huge +
|
|
|
|
$$
|
2024-08-20 03:06:21 +00:00
|
|
|
|
|
|
|
Consiste nel sommare i componenti uno ad uno tra loro:
|
|
|
|
$$
|
|
|
|
\def \varX {{\color{Red} \mathbf{x}}}
|
2024-08-23 11:13:05 +00:00
|
|
|
\def \varY {{\color{MediumBlue} \mathbf{y}}}
|
2024-08-20 03:06:21 +00:00
|
|
|
\def \varXa {{\color{Crimson} x_1}}
|
|
|
|
\def \varXb {{\color{IndianRed} x_2}}
|
|
|
|
\def \varXc {{\color{Salmon} x_3}}
|
2024-08-23 11:13:05 +00:00
|
|
|
\def \varXn {{\color{LightSalmon} x_n}}
|
2024-08-20 03:06:21 +00:00
|
|
|
\def \varYa {{\color{RoyalBlue} y_1}}
|
|
|
|
\def \varYb {{\color{DeepSkyBlue} y_2}}
|
|
|
|
\def \varYc {{\color{LightSkyBlue} y_3}}
|
2024-08-23 11:13:05 +00:00
|
|
|
\def \varYn {{\color{PaleTurquoise} y_n}}
|
2024-08-20 03:06:21 +00:00
|
|
|
|
|
|
|
\varX + \varY
|
|
|
|
=
|
|
|
|
\begin{bmatrix}
|
2024-08-23 11:13:05 +00:00
|
|
|
\varXa + \varYa &
|
|
|
|
\varXb + \varYb &
|
|
|
|
\varXc + \varYc &
|
|
|
|
\dots &
|
|
|
|
\varXn + \varYn
|
2024-08-20 03:06:21 +00:00
|
|
|
\end{bmatrix}
|
|
|
|
$$
|
2024-08-23 11:13:05 +00:00
|
|
|
|
|
|
|
> [!Note]
|
|
|
|
> Corrisponde a concatenare i due vettori, e prendere il punto risultante.
|