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.

How to solve it using MATLAB ..

Status
Not open for further replies.
Im not sure about the equation, but you can do the Symbolic, a few example

syms H w s n

tmp = (1+0.25*1e-3*n*s);
sigma = symsum(tmp,n,0,39);
H = w/(s^2+w^2)*sigma;

H_simple1 = simple(H); H_simple1
H_simple2 = simplify(H); H_simple2

you can use one of simple or simplify, wich one best for the solution, ..
 

Status
Not open for further replies.

Part and Inventory Search

Welcome to EDABoard.com

Sponsor

Back
Top