Plotting bode diagram with a transfer function without values

1 view (last 30 days)
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!

Accepted Answer

Star Strider
Star Strider on 15 Jan 2022
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 Comments
Luc Momber
Luc Momber on 15 Jan 2022
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 on 15 Jan 2022
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
.

Sign in to comment.

More Answers (0)

Products


Release

R2021a

Community Treasure Hunt

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

Start Hunting!