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 vishnu.cse60

  1. V

    Need Matlab code for box muller

    code 1: r = rand(1000,2); % 2 cols of uniform rand % Do the Box-Muller transformation n = sqrt(-2*log(r(:,1)))*[1,1].*[cos(2*pi*r(:,2)), sin(2*pi*r(:,2))]; hist(n) % plot two histograms code 2: function x=boxmuller(n,sd); x=zeros(n,1); len=ceil(n/2); rand('seed',sd); for i=1:len...

Part and Inventory Search

Back
Top