fplot and quiver return "Error using box"
显示 更早的评论
Hello,
I keep getting this error when using the fplot and quiver functions, even when using the most simple example from the documentation.
fplot(@(x) sin(x))
Error using box
Too many input arguments.
Error in fplot (line 169)
box(cax,'on');
[X,Y] = meshgrid(0:6,0:6);
U = 0.25*X;
V = 0.5*Y;
quiver(X,Y,U,V,0)
Error using box
Too many input arguments.
Error in quiver (line 96)
box(cax,'on');
I have updated MATLAB and have been scouring the internet for answers. I am running macOS Sonoma. Has anyone run into these issue before?
1 个评论
Please share the output of -
which box -all
采纳的回答
更多回答(0 个)
类别
在 帮助中心 和 File Exchange 中查找有关 Vector Fields 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!