foptions.m, filtering for matlab

源代码在线查看: fig9_20.m

软件大小: 241 K
上传用户: ybsscauc
关键词: filtering foptions matlab for
下载地址: 免注册下载 普通下载 VIP

相关代码

				clear all
				eps = 0.0000001;
				npts = 5000;
				del = 1./ 5000.;
				t = 0. : del : 1.;
				% generate input sequence
				inp = 1.+ t.^3 + .5 .*t.^2 + cos(2.*pi*5 .* t) ;
				% read the intial estimate for the state vector
				X0 = [2,.1,.01]';
				% this is the update interval in seconds
				T = 100. * del;
				% this is the value of the smoothing coefficient
				xi = .1;
				[residual, estimate] = ghk_tracker (X0, xi, inp, npts, T, eps);
				figure(1)
				plot (residual(1:500),'k')
				xlabel ('Sample number')
				ylabel ('Residual error')
				grid
				figure(2)
				NN = 4999.;
				n = 1:NN;
				plot(n,estimate(1:NN),'k',n,inp(1:NN),'k--')
				xlabel ('Sample number')
				ylabel ('Position')
				legend ('Estimated','Input')
				figure(3)
				plot(inp,'k')
				xlabel ('Sample number')
				ylabel ('Position')
							

相关资源