I want my graph to show only red line. I'm not sure why it's showing orange line as well

3 次查看(过去 30 天)
stem(x,y)
hold on
plot(x, 2.0477*exp(.4927*x))
x_dense= 0: .1: 5;
plot(x_dense, 2.0477 *...
exp(.4927*x_dense), 'r-')

回答(1 个)

Ameer Hamza
Ameer Hamza 2020-11-14
You have two plot() statements. Delete the first one if you just want red line
stem(x,y)
hold on
x_dense= 0: .1: 5;
plot(x_dense, 2.0477*exp(.4927*x_dense), 'r-')

类别

Help CenterFile Exchange 中查找有关 Graph and Network Algorithms 的更多信息

标签

Community Treasure Hunt

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

Start Hunting!

Translated by