how to fix "Error using plot. Data must be a single input of y-values or one or more pairs of x- and y-values." error.

41 次查看(过去 30 天)
figure(4)
plot(uv_model,y(1:N-1),'LineWidth',2,uv,y,'LineWidth',2,uv_model2,y(1:N-1),'g','LineWidth',2)
axis([-.01 .01 -1.05 1])
title('uv varying lm model')
xlabel('uv') % x-axis label
ylabel('y') % y-axis label
legend('lm=const','exact','Lm=f(yy/L)')

回答(1 个)

Voss
Voss 2024-3-30
plot(uv_model,y(1:N-1),uv,y,uv_model2,y(1:N-1),'g','LineWidth',2)
  1 个评论
Voss
Voss 2024-3-30
Property/value pairs of arguments (like "'Linewidth',2") must come at the end of the argument list and apply to all lines plotted with that call to plot().

请先登录,再进行评论。

类别

Help CenterFile Exchange 中查找有关 Annotations 的更多信息

标签

产品


版本

R2020a

Community Treasure Hunt

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

Start Hunting!

Translated by