Plotting bode diagram with a transfer function without values

1 次查看(过去 30 天)
Hi, I'm pretty new at MATLAB and I am trying to plot a bode with a transfer function of J*W*L / (R + J*W*L) without any values. Is this possible? Thank you in advance!

采纳的回答

Star Strider
Star Strider 2022-1-15
No.
How would you plot it without assigning values to any of the varaibles? (It would be possible to symblically derive some characteristics (half-power point and perhaps some others, since there are no capacitors there is no resonant frequency to be calculated), however those remain symbolic until values are assigned.
MATLAB has the same problem.
  4 个评论
Luc Momber
Luc Momber 2022-1-15
thank you for your answer. If you are curious, with help of my instructor I found out that the searched for answer is this:
Thank you much for your time!
Star Strider
Star Strider 2022-1-15
As always, my pleasure!
I have no idea what the context of the exercise is.
tf_variable = tf([1 0],[1 1])
tf_variable = s ----- s + 1 Continuous-time transfer function.
figure
bodeplot(tf_variable)
grid
.

请先登录,再进行评论。

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Digital Filter Analysis 的更多信息

标签

产品


版本

R2021a

Community Treasure Hunt

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

Start Hunting!

Translated by