Effacer les filtres
Effacer les filtres

Transfer functions in Matlab

1 vue (au cours des 30 derniers jours)
Aleem Andrew
Aleem Andrew le 23 Jan 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)

Réponses (1)

Shubham Khatri
Shubham Khatri le 2 Fév 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.

Catégories

En savoir plus sur Symbolic Math Toolbox dans Help Center et File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by