$$ \begin{aligned}AX=&B\\ X=&A^{-1}B\end{aligned} $$
2x + 5y = 12 3x + 4y = 11 >> A = [2 5; 3 4] >> B = [12, 11] >> X = inv(A)*B
$$ \begin{aligned}\left( \begin{matrix}2&5\\ 3&4\end{matrix} \right) \left( \begin{matrix}x\\ y\end{matrix} \right) =&\left( \begin{matrix}12\\ 11\end{matrix} \right) \\ \left( \begin{matrix}x\\ y\end{matrix} \right) =&\left( \begin{matrix}2&5\\ 3&4\end{matrix} \right)^{-1} \left( \begin{matrix}12\\ 11\end{matrix} \right) \end{aligned} $$
$$ Y=\beta_{1} \times \text{Age} +C $$
$$ \left[ \begin{matrix}Y_{1}\\ Y_{2}\\ \vdots \\ Y_{n}\end{matrix} \right] =\left[ \begin{matrix}\text{Age}_{1} &1\\ \text{Age}_{2} &1\\ \vdots &\vdots \\ \text{Age}_{n} &1\end{matrix} \right] \left[ \begin{matrix}\beta \\ C\end{matrix} \right] $$
$$ \begin{aligned}Y=&XB\\ X^{T}Y=&X^{T}XB\\ \left( X^{T}X\right)^{-1} X^{T}Y=&B &\end{aligned} $$
>> B = pinv(X) * Y % Xは患者個別データ(年齢),Yはボクセル値,Bが求めたい係数 >> y = XB % 上記操作で B が求められたので,XBをプロットできる >> plot(age, y) % y = XB に基づいて回帰直線が引かれる
$$ Y=\beta_{1} \times \text{Age} +\beta_{2} \times \text{Sex} +\beta_{3} \times \text{TIV} +C+\epsilon $$
% | コメントアウト |
%% | 2つ続くとセクション扱いになる |
[2 4; 3 5]