Skip to content
Snippets Groups Projects
Commit 8e796578 authored by Marina Kreme's avatar Marina Kreme
Browse files

unnecessary file deletion

parent 2ab595e1
No related branches found
No related tags found
No related merge requests found
function eig_val = error_operator_norm(gab_mul, svd_res)
% compute error M -UDU.T
u_mat = svd_res.U;
s = svd_res.D;
u_h = u_mat';
u_op = @(x) u_mat*x;
s_op = @(x) s*x;
u_h_op = @(x)u_h*x;
a_est = @(x) real(u_op(s_op(u_h_op(x))));
err_op = @(x) gab_mul(x) - a_est(x) ;
eig_val = abs(eigs(err_op, size(u_mat,1),1));
end
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment