Filter löschen
Filter löschen

Transfer functions in Matlab

1 Ansicht (letzte 30 Tage)
Aleem Andrew
Aleem Andrew am 23 Jan. 2021
Beantwortet: Shubham Khatri am 2 Feb. 2021
Given the differential equation diff(c,t,1) + 2*c(t) = r(t) I want to isolate r(t)/c(t) assuming the initial conditions are 0. Can someone please explain how to do this?
syms c(t) r(t)
dc = diff(c,t,1);
laplace(dc + 2*c == r)

Antworten (1)

Shubham Khatri
Shubham Khatri am 2 Feb. 2021
Hello,
As per my understanding of the problem I have attached a code. I have assumed a c(t).
syms c(t) r(t)
c(t)=t.^2+2.*t
dc= diff(c,t,1)
r(t)=dc+2*c
laplace(r/c)
Please refer to the this MATLAB Answer for some help. Also, please click on the documentation link for syms , laplace and diff for more information on these functions.

Kategorien

Mehr zu Symbolic Math Toolbox finden Sie in Help Center und File Exchange

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by