⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 fdamp.m

📁 Hilbert 黄变换代码,主要实现黄变换的分解和谱分析
💻 M
字号:
function msf=fdump(x)

% The function FDUMP calculates a normalized marginal damping spectrum
% of x(k,n),where k specifies the number of frequencies, 
% and n is the number of time values.
%
% This code is used after NSPABD, which generates a damping spectrum.
% 
% Function PLOT can be used to view the marginal spectrum,
% for example, plot(length(msf),msf).
%
% Calling sequence-
% msf=fdump(x)
%
% Input-
%	x	- 2-D matrix x(k,n) of the HHT spectrum
%
% Output-
%	ms	- vector ms(k) that specifies the marginal spectrum
%
% Used by-
%	CALDSPEC, CALDSPECO	
 
% L. W. Salvino			Apr.23, 1998 Modified from 'mspc.m'

%----- Get dimensions
n=size(x);
k=n(1);
n=n(2);

%----- Calculate the normalized marginal damping spectrum
y=x.*x;
msf=sum(x')/n;
msf=sqrt(msf);





        

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -