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 qagt

  1. Q

    Matlab Code for Generating Walsh Code for IS95 or CDMA one

    walsh code in matlab % Length: 64/128 function Code = Walsh(Length, Index) W = [1]; for k=1:floor(log2(Length)) W = [W W; W -W]; end Code = W(Index+1, : );

Part and Inventory Search

Back
Top