1
Fork 0
mirror of https://github.com/Steffo99/appunti-magistrali.git synced 2024-11-23 18:54:18 +00:00
appunti-steffo/7 - Fondamenti di machine learning/2 - Calcolo vettoriale/matrice Iacobiana.md

52 lines
1,008 B
Markdown
Raw Normal View History

2024-08-23 11:13:05 +00:00
---
aliases:
- iacobiana
---
Particolare [[matrice]] definita relativa a una [[funzione]] i cui [[output]] sono [[array|vettori]].
$$
\Huge
2024-11-06 12:42:11 +00:00
\iacobianOf{\mathbf{x}}
2024-08-23 11:13:05 +00:00
$$
2024-11-06 12:42:11 +00:00
Corrisponde alla [[trasposta]] del [[vettore riga]] risultante come [[gradiente]] di $\mathrm{f}(x)$:
2024-08-23 11:13:05 +00:00
$$
\Large
2024-11-06 12:42:11 +00:00
\iacobianOf{x}
=
\gradientOf{x}
2024-08-23 11:13:05 +00:00
=
\begin{bmatrix}
2024-11-06 12:42:11 +00:00
\gradientOf[\mathrm{f}_1]{x} &
\gradientOf[\mathrm{f}_2]{x} &
2024-08-23 11:13:05 +00:00
\dots &
2024-11-06 12:42:11 +00:00
\gradientOf[\mathrm{f}_M]{x}
\end{bmatrix}
$$
I suoi elementi sono definiti come le $colonna$-esime [[derivata parziale|derivate parziali]] della funzione $f$ rispetto all'elemento $riga$-esimo in output:
$$
\Large
\iacobianOf{x}
=
\begin{bmatrix}
\iacobianElement{x}{1}{1} &
\iacobianElement{x}{1}{2} &
\dots &
\iacobianElement{x}{1}{n} \\
\iacobianElement{x}{2}{1} &
\iacobianElement{x}{2}{2} &
2024-08-23 11:13:05 +00:00
\dots &
2024-11-06 12:42:11 +00:00
\iacobianElement{x}{2}{n} \\
2024-08-23 11:13:05 +00:00
\vdots &
\vdots &
\ddots &
\vdots \\
2024-11-06 12:42:11 +00:00
\iacobianElement{x}{M}{1} &
\iacobianElement{x}{M}{2} &
2024-08-23 11:13:05 +00:00
\dots &
2024-11-06 12:42:11 +00:00
\iacobianElement{x}{M}{n} \\
2024-08-23 11:13:05 +00:00
\end{bmatrix}
$$