Hi everyone, could u please help me?

조회 수: 1 (최근 30일)
kiarash gharani khajeh
kiarash gharani khajeh 2018년 11월 28일
댓글: kiarash gharani khajeh 2018년 11월 28일
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

답변 (1개)

Luna
Luna 2018년 11월 28일
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)
see more details laplace in here.
  댓글 수: 1
kiarash gharani khajeh
kiarash gharani khajeh 2018년 11월 28일
thanks for your help. but that is exactly my problem. i only have a vector of voltage as well as current coming from a nonlinear system and it is not possible to make equation from them. i need to extract the bode response of impedance by them

댓글을 달려면 로그인하십시오.

카테고리

Help CenterFile Exchange에서 Symbolic Math Toolbox에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by