Please I have a code, when I run, it keeps saying: "Error using grid First argument must be an axes handle".
4 views (last 30 days)
Show older comments
Sedulous12
on 13 Jul 2022
Commented: Abderrahim. B
on 14 Jul 2022
xlabel('Energy (MeV)')
ylabel('Energy integrated neutron flux (a.u.)')
grid on
grid minor off
box on
0 Comments
Accepted Answer
Abderrahim. B
on 13 Jul 2022
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 Comments
Abderrahim. B
on 14 Jul 2022
You are welcome. If you found this answer helpful, accept it so that others with some issue can refer to it.
More Answers (0)
See Also
Categories
Find more on Particle & Nuclear Physics in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!