can anyone help me in finding out the location of zero crossing point of an signal whose peak is determined

조회 수: 1 (최근 30일)
the signal is only in the positive half so zero crossing point is also the starting point for that cycle

답변 (1개)

Carlos
Carlos 2013년 3월 7일
Hi,if you have a signal like this
c =
Columns 1 through 15
0 1 2 3 4 5 6 7 8 9 10 0 1 2 3
Columns 16 through 22
4 5 6 7 8 9 10
using find you can find the indices where your vector(representing the signal's values) where the value is zero.
>> find(c==0)
ans =
1 12

카테고리

Help CenterFile Exchange에서 Descriptive Statistics에 대해 자세히 알아보기

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by