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 Sandi2000

  1. S

    Convert state-space representation to transfer function

    Matlab code by using signal processing and Control system toolbox.
  2. S

    Convert state-space representation to transfer function

    I worked on this code s=tf('s'); G=(s^3+11*s^2+36*s+26)/(s^4+14.6*s^3+74.96*s^2+156.7*s+99.65); [A,B,C,D]=ssdata(G); [AA, BB, CC,DD] = balreal(A, B, C); [b,a] = ss2tf(AA,BB,CC,DD); If i using the function 'ss2tf', i find this error : Can any one help me how can i solve this...
  3. S

    Convert a digital filter to transfer function

    Do you mean signal processing toolbox?
  4. S

    Digital first-order IIR filter impulse response

    Yes i agree with you , the problem is ,when can I apply the equation (2) and when can i apply the equation (5)?
  5. S

    Convert a digital filter to transfer function

    What do you mean by tool's name?can you give me an example ?
  6. S

    Convert a digital filter to transfer function

    I have a coefficients of FIR filter ,found it by 'fir1' function, in general, i want to convert a digital filter to transfer function with apply this formula : The method : Design a 48th-order FIR filter passband , with a cutoff frequency w=[0.35 0.65]. Compute the coefficients of the...
  7. S

    Digital first-order IIR filter impulse response

    The first formula : A causal first-order IIR filter is characterized by the following difference equation (01) The impulse response of that system can be computed via the Z-transform or otherwise, and it turns out to be (02) The second formula : the general causal IIR filter is...
  8. S

    Design filter by using The genetic operator

    I try to design filter by using The mutation operator(One of the operation in genetic algorithm) % parameter using in mutation operator N=100 %population size m=0.01 %mutation rate % filter information f = [0 0.3 0.4 0.6 0.7 1]; a = [0 0.0 1.0 1.0 0.0 0]; b = firpm(17,f,a); A...
  9. S

    Design filter by least squares

    I don't know . Digital Filter Design,Parks and Burrus ,page 70,this is a reference to the information.
  10. S

    Design filter by least squares

    I want to understand ,''One of the most effective modifications of the direct LS error design methods is to change the bands of frequencies over which the minimization is carried out.'' what i understood the change bands of frequencies is done by using the iteration method, am I right?
  11. S

    Building Blocks of Digital Filters

    Digital filters are implemented using three fundamental building blocks: an adder, a multiplier, and a delay element.In implementation cost there is number of multipliers, number of adders and number of state. Can you give more information about the implementation cost ? when using it?what is...
  12. S

    Transfer function in the z domain

    Thank you for the clarification , but what do you mean by ' IR can be seen as subset of IIR '? (the IR : impulse response and it represent (1)).
  13. S

    Transfer function in the z domain

    A generic causal FIR or IIR filter can be represented by the following transfer function in the z domain as shown in (01) in other case, A finite-dimensional LTI discrete-time causal filter can be represented by the following transfer function in the z domain: (02) Why there is two...
  14. S

    Design filter by least squares

    The LS error methods use an error criterion that is related to the energy of the signal or noise. The design problem is posed by defining an error measure E as a sum (or integral) of the squared differences between the actual and the desired frequency response over a set of L frequency samples...

Part and Inventory Search

Back
Top