I have a signal composed of square pulses (+ some noise), here's a tiny part of it:

I look for an efficient and robust way to count how many pulses I have.
Here's what I've done so far:
The amplitude is a bit noisy but SNR is great do I can threshold:
data = data>1;
the length of each pulse can be noisy so I ignore it and use diff, to obtain the derivatives (+ and -), find how many non-zero elements there are, and divide by 2 (since there are 2 derivative peaks per pulse) .
dd=diff(data);
num_of_pulses=length(find(diff(dd)))/2
Is that the best way to do that? I was told not to use diff because it can be too noisy...
