AA_LU | 連立方程式の左辺の係数行列\(\myvector{A}\)のLU分解。
\(\myvector{A}\)を表す行列を
関数LU_decomposition (matrix/inverse.h)に渡せば計算できる。
厳密には\(\myvector{A}\)自体のLU分解ではなく、
\(\myvector{A}\)の行を交換した行列\(\myvector{A’}\)
のLU分解である。 The LU decomposition of the coefficient matrix \(\myvector{A}\) in the left hand side of the simultaneous equation, which can be generated by passing a matrix representing \(\myvector{A}\) into function LU_decomposition (matrix/inverse.h). Strictly, the function LU_decomposition does not yield the LU decomposition of \(\myvector{A}\) itself; instead, the LU decomposition of \(\myvector{A’}\) in which several rows of \(\myvector{A}\) are swapped is given. |
b | 連立方程式の右辺の定数ベクトル
(\ref{eq.problem})式の\(\myvector{b}\)。 A vector composed of the constants in the right hand side of the simultaneous equations; the column vector \(\myvector{b}\) of eq. (\ref{eq.problem}). |
計算式における変数名 Variable name in the formula |
関数のソースコードにおける変数名 Variable name in the source code of this function |
\(\myvector{A}\) | A |
\(\myvector{b}\) | b |
\(\myvector{A’}\) | 使用しない Not used |
\(\myvector{b’}\) | bb |
\(\myvector{L}\) | AA_LU.L |
\(\myvector{U}\) | AA_LU.U |
\(\myvector{y}\) | y |
\(\myvector{x_{numerical}}\) | x_numerical |
\(\myvector{U}\myvector{x_{numerical}}\) | U_times_x |
\(\myvector{A’}\myvector{x_{numetical}}\) | AA_times_x |
\(\myvector{A’}\myvector{x_{numetical}}-\myvector{b’}\) | right |
\(\myvector{\delta y}\) | dy |
\(\myvector{\delta x}\) | dx |
\(\myvector{x_{true}}\) | re |