My graph is not plotting my data. How do I make it graph Vrms?

2 次查看(过去 30 天)
.

采纳的回答

Cris LaPierre
Cris LaPierre 2024-4-2
编辑:Cris LaPierre 2024-4-5
Two issues
  1. You never define your x variable, f
  2. Your code calculates a single value for Vrms
By default, semilogx does not use markers. Therefore, when you plot a single point, there is no line, so it appears as if nothing got plotted. Add a marker style to your LineSpec in order to see it.
plot(5,5) % no marker style
hold on
plot(4,4,'go-') % includes a marker style
hold off
legend

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 2-D and 3-D Plots 的更多信息

标签

Community Treasure Hunt

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

Start Hunting!

Translated by