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 Maharshi

  1. M

    write a c program to execute x/2^y in single clock cycle

    write a c program to execute x/2^y in single clock cycle
  2. M

    how to cionvert slow code to fasr code

    I want to perform my code is LW Rb,b LW Rc,c ADD Ra,Rb,Rc SW a,Ra LW Re,e LW Rf,f SUB Rd,Re,Rf SW d,Rd I want to convert above slow code to fast code. What should I do?
  3. M

    noise cancellation using simulink

    you will always get error if you are directly using simulink blocks you have to write codes for the whole algorithm For example , For LMS Noise cancellation MATLAB codes are as follows: close all; clear all;clc; t=1:0.025:5; desired=5*sin(2*3.*t); noise=5*sin(2*50*3.*t)...
  4. M

    Adaptive sampling - practice example

    close all; clear all;clc; t=1:0.025:5; desired=5*sin(2*3.*t); noise=5*sin(2*50*3.*t); refer=5*sin(2*50*3.*t+ 3/20); primary=desired+noise; subplot(4,1,1); plot(t,desired); ylabel('desired'); subplot(4,1,2); plot(t,refer); ylabel('refer'); subplot(4,1,3)...
  5. M

    matlab adaptive noise cancellation

    Re: adaptive noise cancellation matlab close all; clear all;clc; t=1:0.025:5; desired=5*sin(2*3.*t); noise=5*sin(2*50*3.*t); refer=5*sin(2*50*3.*t+ 3/20); primary=desired+noise; subplot(4,1,1); plot(t,desired); ylabel('desired'); subplot(4,1,2); plot(t,refer)...
  6. M

    How to send image from pc to pc via RS232 Port?

    How to send image from pc to pc via RS232 Port? :?:

Part and Inventory Search

Back
Top