thfig24.m
来自「% Atomizer Main Directory, Version .802 」· M 代码 · 共 34 行
M
34 行
% thfig24: BP Thesis Figure 2.4 -- MOF representations are not sparse
%
% MOF tends to use all the basis functions nonorthogonal to
% signals. hence ends up with very non-sparse representations
%
% Signal: Hydrogen
% Signal Length: 256
% Dictionary: WP with D, qmf = (Symmlet 8)
% Observation:
% (a) The signal: Hydrogen
% (b) The ideal phase plane indicates one signal atoms.
% (c) The brightened phase plane from the frame solution is spread
% out, exaggerating greatly the intrinsic complexity of the
% signal. The plase plane shown is brightened; the actual phase
% plane is much weaker.
%
help thfig24
n = 256; D = log2(n); t = (1:n)' / n;
qmf = MakeONFilter('Symmlet', 8);
x = InputSignal('Hydrogen', n);
cMOF = MOF(x, 'WP', D, qmf, 0);
cBP = BP_Interior(x, 'WP', D, qmf, 0);
figure(1); clf
subplot(2,2,1); plot(t, x); title('(a) Signal: Hydrogen');
subplot(2,2,3);
PhasePlane(cBP, 'WP', n, qmf);
title('(b) Ideal Phase Plane')
subplot(2,2,4);
PhasePlane(cMOF, 'WP', n, qmf);
title('(c) Phase Plane by MOF')
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?