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 SPIZERO

  1. S

    digital to analog conversion in matlab

    I understood that you want to do 6-bit DAC. right? If it is true. Here is my explanation. data = [1 1 1 0 0 0]; function analog=myDAC(digital) % digital input must be 6 bit width in this case(MSB first). % and suppose your analog output's maximum voltage is 5V it would be like that %...
  2. S

    inverse fast fourier transform

    lambda = c/f % c is speed of light, then your frequency axis should divide c(speed of light);
  3. S

    88-108MHz fm transmitter

    Your antenna's length must be equal to carrier's wavelength. Example: lambda = c/f;
  4. S

    i need explain about clock source approaches like achieve 1 sec or 1m sec

    It is very simple. Example: if you have 50MHz master clock then 50,000,000 cycles of your master clock is 1 sec. Here is tutorial. f = 50MHz = 50,000,000. T = 1/50,000,000 = 20 nanosec. number_of_cycles = 1sec / 20 nanosec = 50,000,000 cycles. same to 1ms number_of_cycles = 1msec / 20 nanosec...
  5. S

    Searching for VHDL project ideas

    what about adc and dac? This is very important to communication systems.
  6. S

    Adding Two Numbers In VHDL

    Actual length is 8, so you try to change Xk0 : OUT signed (7 downto 0)); Then there will be no error. :D ---------- Post added at 13:33 ---------- Previous post was at 13:25 ---------- Actual length is 8, so you try to change Xk0 : OUT signed (7 downto 0)); Then there will be no error. :D
  7. S

    matlab problem in image filtering

    I'm expecting that you use 3x3 mask. So you cant use this mask on border of image. Then to take 1px border from original image. Try it.
  8. S

    Z-transform - Convolution

    their convolution is product of their Z-transforms, you know. x1(n)*x2(n)=X1(z)X2(z). then X3(z)= X1(z)X2(z) ---inverse Z-transform-> x3(n). Good luck
  9. S

    matlab problem in image filtering

    which program did you use? Matlab? Is outside frame means 1pixel border?
  10. S

    Basic Question on implementing Cordic algorithm for multiplication of 2 numbers.

    You have to set these variables to some data types. Example : x=int8(x); y=int8(y); then x0 = x(1) = 255; % first value of Cosinus; y0 = y(1) = 0; % first value of Sinus; and in 2^(-i) , i must be constant --> it is define how many times shift to the left in digital systems. Try it...
  11. S

    Simple Matlab question

    i = 1 % 'i' is positive integer range in X'range. and it is only works in left shift X = [ 0 0 1 2 3]; X = horzcat(X(i+1:length(X)),zeros(1:i));
  12. S

    Simple Matlab question

    a = [0 0 1 2 3]; x=0; % circular shift up or down. up when positive, down when negative, no shift when 0; y=-1; % circular shift left or right. right when positive, left when negative, no shift when 0; a=circshift(a,[x y]); Try it...
  13. S

    what we mean by 4-FSK

    Yes. Your modulated data will be a set of four different frequencies.
  14. S

    what we mean by 4-FSK

    in 4-FSK. you will send datas by 2 bits. 00,01,10 and 11. therefore that combinations will switch f1,f2,f3,f4 frequencies. You have to choose that frequencies before use. example: f1 = 10KHz --> sends when current data is 00. f2 = 20KHz --> sends when current data is 01. f3 = 30KHz --> sends...
  15. S

    inverse fast fourier transform

    Which program/platform will you use?

Part and Inventory Search

Back
Top