Wrong sine plot when styling it
2 次查看(过去 30 天)
显示 更早的评论
I was playing with the tutorial of Matlab. I've written this code:
x = linspace(0, 2*pi);
y = sin(x);
plot(x, y)
And I obtain the right plot:
But then I use the following command:
plot(x, y, "r--")
And I obtain this weird plot:
What I'm doing wrong?
2 个评论
Steven Lord
2024-5-7
Let's check which plot function you're calling in each case.
x = linspace(0, 2*pi);
y = sin(x);
which plot(x, y)
which plot(x, y, "r--")
In particular, I'm wondering if something added an overload of plot for the string data type to the MATLAB path.
And just for completeness, what does the next line of code show and what is the output of the which call that follows it?
plot(x, y, 'r--')
which plot(x, y, 'r--')
回答(0 个)
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Graphics Performance 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!