dsp.ZeroCrossingDetector: a confusing error
Ältere Kommentare anzeigen
I am trying to employ dsp.ZeroCrossingDetector to count number of zero crossings of a signal. Consider the following:
x = 0 : pi/180 : 4*pi;
y = sin(x);
zcd = dsp.ZeroCrossingDetector;
n = zcd(y);
release(zcd);
It is expected that size of n be 1*1, that is a sclar, but MATLAB returns n as vector of zeros with the same size as x.
How can I solve this problem?
Akzeptierte Antwort
Weitere Antworten (0)
Kategorien
Mehr zu Signal Processing Toolbox finden Sie in Hilfe-Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!