annotate ddm_lin_sys_sol.m @ 4:72c011ed1977 tip

more elaborate example with non-stat. estimate explanation
author smusevic
date Tue, 30 Jul 2013 09:56:27 +0100
parents a4a7e3405062
children
rev   line source
dan@0 1 function dlss = ddm_lin_sys_sol(A_sys,b_sys,N_fft,R)
dan@0 2 dlss = zeros(ddm_dgr+1, N_fft-R+1);
dan@0 3
dan@0 4 for l=1:N_fft-R+1
dan@0 5 A = A_sys(:,:,l);
dan@0 6 b = b_sys(:,:,l);
dan@0 7 dlss(:,l) = [fliplr((inv(A'*A)*A' * b).') 0];
dan@0 8 end
dan@0 9 end