Hi everyone, could u please help me?
1 visualización (últimos 30 días)
Mostrar comentarios más antiguos
kiarash gharani khajeh
el 28 de Nov. de 2018
Comentada: kiarash gharani khajeh
el 28 de Nov. de 2018
i have a vector of voltage, a vector of current and a vector of time which coresspond to both of voltage and current (obviously all with the same length). now, I need to find the magnitude of the impedance (voltage to current) in laplace domain (the transfer function in fact). is there anyway to find it with matlab?
thanks for your help in advance
0 comentarios
Respuestas (1)
Luna
el 28 de Nov. de 2018
You should first create function based on your time vector, using impedance formula.
for example your formula f is below. Define variables symbolicly using syms and apply laplace function.
syms a t
f = exp(-a*t); % this should be created for impedance
laplace(f)
ans =
1/(a + s)
Ver también
Categorías
Más información sobre Symbolic Math Toolbox en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!