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 neefa

  1. N

    Neural network for RF and microwaves

    Can anyone please forward the link to the textbook 'Neural network for RF and microwaves" by Q.J.Zhang mail id:neebha08@gmail.com
  2. N

    Suggest me a PhD topic in OFDM communication

    I have found your post and the web link to be useful.i would like to start in beamforming technique.Can you spot any current issue in resource allocation in MIMO-OFDM.
  3. N

    Suggest me a PhD topic in OFDM communication

    Re: phd topic suggestion Thanks for your idea.which software i could prefer for doing this.
  4. N

    Suggest me a PhD topic in OFDM communication

    please suggest some recent topics for doing phd in OFDM communication which could be done using matlab.
  5. N

    simple program for serial adder

    hi, i am just starting to work in xilinx software, could any one help me with the simple program with explanation for serial and parallel adders? kindly help me.
  6. N

    verilog equivalent of C code acc=acc+out;

    verilog query hi frz, how to create a verilog code, for the equivalent C code acc=acc+out; Because of repeated addition of the output out, for each clock cycle we need that code.
  7. N

    requency range of SPARTAN 3E XC3S500E

    Re: frequency range iam not sure of the area. i have designed an 128 point FFT module ,and from the synthesis report i got the frequency to be 111 MHZ. I need to compare it with the device frequency.
  8. N

    requency range of SPARTAN 3E XC3S500E

    frequency range hi frz, can anyone plz tell me the frequency range of SPARTAN 3E XC3S500E. thx.
  9. N

    parallel to serial converter

    thx sureja. hai FvM, i didnt get ur point.hw can we reduce to par1[6:0]<= par1[7:1]; plz modify in the code.
  10. N

    parallel to serial converter

    jigisha sureja i need to implement a parallel to serial converter,and i implemented it. the code is below: module partoser(par_data,clk,data_rdy,ser_out); input clk,data_rdy; input [7:0]par_data; output ser_out; reg [7:0]par1; always@(posedge clk) begin if(data_rdy) par1 <=...
  11. N

    Implementing a multiplier with 4 inputs and 2 outputs.

    Re: multiplier sorry, i have mistaken it.it is complex multiplier.i used the following code to implement this. whether we can prescale like this or else we can import some other efficient method 2 implement this? plz suggest. module signed_complex(A_R, A_C, B_R, B_C, D_R, D_C); // D = A * B...
  12. N

    Implementing a multiplier with 4 inputs and 2 outputs.

    Re: multiplier no iam not multiplying complex nos.just iam giving 4 8bit inputs and i have 2 get 2 outputs.
  13. N

    Implementing a multiplier with 4 inputs and 2 outputs.

    hi frz, i need to implement a multiplier with 4 inputs and 2 outputs. can anyone suggest an efficient multiplier 2 do the same. thx.
  14. N

    How to give 4 sequences 127 points each with point holding 4 bits?

    hi frz, to take FFT,i need to give 4 sequences each of 127 points with each point holding 4 bits.how to give the input? some starting trouble to write in verilog...plz help. thx.

Part and Inventory Search

Back
Top