mirror of
https://github.com/janishutz/eth-summaries.git
synced 2026-09-10 19:15:25 +02:00
14 lines
711 B
TeX
14 lines
711 B
TeX
\subsection{Linearization}
|
|
\label{sec:ms-lin}
|
|
$\vec{f}(\vec{x}) \approx \vec{f}(\vec{\overline{x}}) + \mat{J}_{\vec{f}} \big|_{x = \overline{x}}(\vec{x} - \vec{\overline{x}})$, $f'$, no vec in 1D; $\vec{\overline{x}}$ lin. p.
|
|
|
|
\shortdefinition[Jacobian] $\mat{J}_{\vec{f}}$ rows for eq of $\vec{f}$; cols for vars of each eq.
|
|
It may also be a single value (if just one var in the state)
|
|
|
|
\shortdefinition[Gradient] $\nabla \vec{f}$ is vec, each comp. for par diff of var
|
|
|
|
Part. diff; Approx. using finite differences $\frac{f(\overline{x} + h) - f(\overline{x})}{h}$,\\
|
|
or central differences (vector of $\frac{\vec{f}(\vec{\overline{x}}) + h_i \vec{e_i}}{h_i}$, with $\vec{e_i}$ unit vec)
|
|
|
|
% TODO: Expand this
|