Continue to Site

Welcome to EDAboard.com

Welcome to our site! EDAboard.com is an international Electronics Discussion Forum focused on EDA software, circuits, schematics, books, theory, papers, asic, pld, 8051, DSP, Network, RF, Analog Design, PCB, Service Manuals... and a whole lot more! To participate you need to register. Registration is free. Click here to register now.

Recent content by jerryglen

  1. J

    Zero-crossing detection using MATLAB

    This won't quite work: It does not find values where the point is exactly == 0 and we want to add 1 to the total crossings not i. Try this: zeroNb=0; for i=1:length(x)-1 %length : get x size if ((x(i)>=0 && x(i+1)<0) || (x(i)<=0 && x(i+1)>0)) zeroNb=1+zeroNb; end end

Part and Inventory Search

Back
Top