OKPEDIA MATLAB VETTORI

Come fare la sottrazione dei vettori in Matlab e Octave

Per sottrarre due vettori su Matlab e Octave usare l'operatore meno ( - )

v + w

I termini v e w sono due vettori.

Esempio

Esempio 1

Definire un vettore v

>> v=[1;9;4]

Definire un altro vettore w

>> w=[4;5;6]

Sono due vettori colonna con tre elementi.

Per calcolare la differenza tra i due vettori scrivere v-w

>> v-w
ans =
-3
4
-2

Il risultato è il vettore differenza

$$ v-w = \begin{pmatrix} 1 \\ 9 \\ 4 \end{pmatrix} - \begin{pmatrix} 4 \\ 5 \\ 6 \end{pmatrix} = \begin{pmatrix} 1 - 4 \\ 9 - 5 \\ 4 -6 \end{pmatrix} = \begin{pmatrix} - 3 \\ 4 \\ -2 \end{pmatrix} $$

https://how.okpedia.org/it/matlab/come-fare-la-sottrazione-dei-vettori-in-matlab-e-octave


Segnala un errore o invia un suggerimento per migliorare la pagina


Vettori su Matlab/Octave


FacebookTwitterLinkedinLinkedin