yline error for Matlab example
2 次查看(过去 30 天)
显示 更早的评论
Hello Matlab Community,
I am having trouble to use yline command. Even if I try the matlab example, I receive the below error:
Code for example from yline documentation:
fplot(@(x) log(x));
xlim([0 15]);
ylim([0 4]);
yline(3,'-','Threshold');
Addition to my question, I also tried the xline example and received a similar error. The link of example from xline documentation:
xline(5,'--r');
What can I do to fix my line problem?
I am using matlab R2022b and it is newly updated.
Thank you in advance for your time and support.
0 个评论
采纳的回答
Star Strider
2023-1-18
First, you could have ‘overshadowed’ the line function somehow. To determine that, run this from a script or your Command Window:
which line -all
The result should be similar to the displayed result. If it says anything else (particularly ‘line is a variable’ or something similar) that could be the problem. The solution would be to re-name the user function or variable.
If that is not the problem, try running these from a script or your Command Window:
restoredefaultpath
rehash toolboxcache
.
2 个评论
更多回答(0 个)
另请参阅
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!