Please I have a code, when I run, it keeps saying: "Error using grid First argument must be an axes handle".
4 次查看(过去 30 天)
显示 更早的评论
xlabel('Energy (MeV)')
ylabel('Energy integrated neutron flux (a.u.)')
grid on
grid minor off
box on
0 个评论
采纳的回答
Abderrahim. B
2022-7-13
This grid minor off is not correct .
Learn how to use grid:
doc grid
Try this:
xlabel('Energy (MeV)')
ylabel('Energy integrated neutron flux (a.u.)')
grid on
grid minor
box on
2 个评论
Abderrahim. B
2022-7-14
You are welcome. If you found this answer helpful, accept it so that others with some issue can refer to it.
更多回答(0 个)
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Particle & Nuclear Physics 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!