📄 plot_cepstrum.m
字号:
function plot_cepstrum(sig)
%PLOT_CEPSTRUM Plots the cepstrum of the signal.
%
% PLOT_CEPSTRUM(sig) Computes the cepstrum of sig and plots it up to 10000.
%
% By: Matthew Hutchinson
% Created: 12/09/04
% Rice University
% Elec 301 Project
cepstrum = abs(ifft(log(abs(fft(sig)))));
figure;
plot([1:1:10000],cepstrum(1:10000));
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -