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 hobgoblin

  1. H

    How to specify the input and stage wordlength of CIC filter?

    Re: wordlenghs of CIC filter The process of bitwidth selection is described in details in the paper: An economical class of digital filters for decimation and interpolation by: E. Hogenauer I guess that the result you have is 1 bit less that you expect because you design an interpolation...
  2. H

    DSP to generate high frequency sin wave

    There are lot of ways to generate a sinewave in a DSP, including the CORDIC algorithm (however it is not the simplest one). You can also achieve this by using a recursive filter or a polynomial decomposition. In fact many (if not any) DSP C compilers has a function to generate the sine function...
  3. H

    CIC filter design question

    Hi, The Filter design toolbox in MATLAB assumes 1.15 input data format for a CIC filter by default. The CIC output wordlength is calculated automatically in MATLAB. Therefore the S36e15 that you see means that the CIC filter design function has determined that the gain of your CIC filter is...
  4. H

    DSP to generate high frequency sin wave

    Do you really need a DSP? I think that many commercial DDS chips can be used to this.
  5. H

    Estimating number of Multiplication with FIR filter

    1) What is the best estimate of the number of multiplications per second required to process this data with a standard transverse FIR filter ( Based on the harris forumale for filter length)? I don't know what the harris formula is, but you have to design an LPF satisfying your criteria at...
  6. H

    Sigma Delta Modulator - noise shaping filter

    Re: Sigma Delta Modulator z=roots(b) p=roots(a) H=zpk(z,p,1) [cifb_a,cifb_g,cifb_b,cifb_c] = realizeNTF(H,'CIFB') b and a are filter numerator and denominator coefficients.
  7. H

    How to compute the RMS of a signal using Matlab ?

    Re: RMS using matlab y = sqrt(sum(u.*conj(u))/size(u,1))
  8. H

    Output spectrum of second order Delat-Sigma modulator

    I'm not sure if there exists a strict analytical expression for the output spectrum of an SDM. In my opinion the best sources of information on the subject are: R.Schreier, G.Temes "Understanding Delta-Sigma Data Converters", IEEE Press "Data Converters: Theory, Design, and Simulation", Ed. by...
  9. H

    Info about PWM output spectrum calculation

    fft of pwm Here is one of the articles on this subject :
  10. H

    what's the difference between an AR filter and MA filter

    differentiate between ma model and ar model Additionally AR model performs better for the signals with sharp peaks in PSD, whereas MA modek performs better for the signals with wide lobes in PSD.
  11. H

    need help in beamforming for acoustic application

    Re: need help in beamforming Are you interested in beamforming or in DOA estimation problem in general? I attached a good presentation on the second subject.
  12. H

    is full wave rectifier a linear system ?

    A linear system has two properties: scaling (f(Ax)=Af(x)) and superposition (f(Ax+By)=Af(x)+Bf(y)). Try to test the second property, when x is a sinewave and y is a constant positive level offset. In a linear system you would obtain the same half-period waveform, but shifted above zero. In...
  13. H

    Spectral Analysis and SALP tollbox

    There are enough PSD functions in the SP toolbox: pburg - Burg's PSD estimation method pcov - Covariance PSD estimation method peig - Eigenvector PSD estimation method periodogram - Periodogram PSD estimation method pmcov - Modified Covariance PSD...
  14. H

    Spectral Analysis and SALP tollbox

    Actually, I never worked with SALP Toolbox, but I made the similar things with Signal Processing Toolbox. I guess that You will need three loops: the first one is for the dataset length (Dim in the definition of the sg_cissoid function), the second one is for the difference between tone...
  15. H

    What are TCL and Perl? How are these two languages related to VHDL?

    vhdl + scripting language I found TCL a very useful tool for automating simulation in Modelsim and ActiveHDL. It saves a lot of time since when you change source files you only have to run one script file to compile and/or synthesize and simulate a design instead of performing all these...

Part and Inventory Search

Back
Top