From 8e796578e584bad3a0a04164b95f04cd81867e30 Mon Sep 17 00:00:00 2001
From: Marina Kreme <amamarinak@gmail.com>
Date: Thu, 28 May 2020 00:11:23 +0200
Subject: [PATCH] unnecessary file deletion

---
 matlab/tfgm/tf_tools/error_operator_norm.m | 18 ------------------
 1 file changed, 18 deletions(-)
 delete mode 100644 matlab/tfgm/tf_tools/error_operator_norm.m

diff --git a/matlab/tfgm/tf_tools/error_operator_norm.m b/matlab/tfgm/tf_tools/error_operator_norm.m
deleted file mode 100644
index cdfe465..0000000
--- a/matlab/tfgm/tf_tools/error_operator_norm.m
+++ /dev/null
@@ -1,18 +0,0 @@
-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
-- 
GitLab