资源简介

1. 离散病态问题及其正则化 2. 正则化工具教程 3. 正规化工具参考

资源截图

代码片段和文件信息

function A = app_hh(Abetav)
%APP_HH Apply a Householder transformation.
%
% A = app_hh(Abetav)
%
% Applies the Householder transformation defined by
% vector v and scaler beta to the matrix A; i.e.
%     A = (eye - beta*v*v‘)*A .

% Per Christian Hansen IMM 03/11/92.

A = A - (beta*v)*(v‘*A);

评论

共有 条评论