how do i plot only certain part of cepstrum
Mostrar comentarios más antiguos
How do I plot only certain part of cepstrum for example only first half
I dont want plot first half of coeficient because it might result in no fully correct cepstrum( correct me if iam wrong)
So I want to plot first half of the cepsstrum with all coeficient included. But i just want see first half
It give me that image which i attached but i want to really zoom in on the first part
%cepstrum
f2 = fs*(0:L2-1)/L2;
L2 = length(Featuresceps{1});
t2 = (0:L2-1)*T;
Featuresceps{1} = rceps(Featuresceps{1});
subplot(4,2,2)
plot(f2,Featuresceps{1}(1:end))
xlabel('Qfreq[Hz]');
ylabel('Power');
2 comentarios
KSSV
el 2 de Dic. de 2020
You do indexing and plot the first half.
Kamil Kacer
el 2 de Dic. de 2020
Respuesta aceptada
Más respuestas (0)
Categorías
Más información sobre Cepstral Analysis en Centro de ayuda y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!