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 meher81

  1. M

    how can I test my design with "lgsynth93" benchmark

    I want to test a digital design method on "lgsynth93" benchmark. My algorithm is written in MATLAB (*.m). Is there any solution to test that benchmark using MATLAB? However, if I know its circuits, I write the related M-files, manually.
  2. M

    Static power with Synopsis

    Calculating "static power" using Synopsis Hi What is the command for calculating static power using Synopsis digital design compiler?
  3. M

    Leonardo spectrum and Windows 7

    Thank you. From where can I download it?
  4. M

    Leonardo spectrum and Windows 7

    Would you mind please tell me which version of Leonardo Spectrum is on your system? I have Leonardo spectrum Version 2005. but it dose not work. Please guide me. Thanks
  5. M

    sliding window technique in image processing

    You can use some line buffers to store image rows and columns and then fetch the pixel values to the system.
  6. M

    Leonardo spectrum and Windows 7

    Is there any solution to make "Mentor Graphic Leonardo Spectrum" compatible with windows 7?
  7. M

    JPEG Compression Implementation

    I have designed a comparator and want to use it for implementing a JPEG compressor. Can anyone help me? On the other hand, I want to know Whether the comparator is used to implement compressor?
  8. M

    JPEG Compression Implementation

    I have designed a comparator and want to use it for implementing a JPEG compressor. Can anyone help me? On the other hand, I want to know Whether the comparator is used to implement compressor?
  9. M

    SNR of image in fft processing with matlab

    I want to compare two FFT processing: fixed-point and floating-point How can I find SNR of two above calculation on an image with MATLAB? Can anyone help me?
  10. M

    Number of 1s in a binary string

    Thank you But I want to find the solution without using any loop. Is there any logical statement for it?
  11. M

    Number of 1s in a binary string

    I have a n-bit binary string. There are not more than two 1s in it. How can I found the simplest way to detect the number of 1's in it? Thanks
  12. M

    help me with verilog code

    Hi Ashishk you can use logical statements in sensitivity list. Sometimes it uses for combinational circuits, in which all of the inputs have the same role. in the other word, it must be triggered if one of it's input changes. In this case we use or between signals in sensitivity list: always @...
  13. M

    Next generation of wireles communication systems

    Hi all I want to find a topic for my thesis in PhD. I have studied some literature till now. There are some challenges, such as bandwidth limitation, co-existence, cross talk, side lob, ... My focus is on DAB (Digital Audio Broadcasting) systems. Can anyone help me to find the best option?
  14. M

    FFT Code - What is the meaning of "Confluence fft"?

    Hello all I want to use Verilog codes for fft from opencores. it is written in confluence. I want to know what it means. can I use that for one of the blocks of my system? I ran it in Modelsim, but can not get any results. it was compiled without error.
  15. M

    [SOLVED] how to calculate log2(n) in verilog

    module max_val ( mxm, in, reset ); input reset; input [ 31 : 0 ] in; output [ 31 : 0 ] mxm; wire [ 31 : 0 ] in; integer k; integer i; integer mxm; always @ (in or reset) begin if (reset) mxm = 0; else k=in; if (k>mxm) mxm <= k; end endmodule Testbench...

Part and Inventory Search

Back
Top