一种新的时频分析方法的matlab源程序。

源代码在线查看: least.m

软件大小: 369 K
上传用户: lichao0516
关键词: matlab 时频 分析方法 源程序
下载地址: 免注册下载 普通下载 VIP

相关代码

				function [cof1,cof2]=least(x,dt)
				
				% The function LEAST returns the coefficients found by least square method.
				% Only 1st column of 2-D input data x(:,1) is processed.
				%
				% Calling sequence-
				% [cof1,cof2]=least(x,dt)
				%
				% Input-
				%	x		- 2-D data x(m,n)
				%	dt		- the true delta t
				% Output-
				%	cof1,cof2	- numbers representing the coefficients 
				%
				% Used by-
				% 	ACC2DIS
				
				%----- Get dimensions
				[m,n]=size(x) ;
				
				%----- Calculate the coefficients
				sx=sum(x(:,1))	;
				sxx=0.	;
				for jj=1:m	;
				   sxx=sxx+jj*x(jj,1) ;
				end
				   cof1=(2*(2*m+1)*sx-6*sxx)/(m*(m-1))  ;
				   cof2=(12*sxx-6*(m+1)*sx)/(dt*m*(m-1)*(m+1)) ;
				   
				   
				   			

相关资源