Please I have a code, when I run, it keeps saying: "Error using grid First argument must be an axes handle".
8 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
Sedulous12
am 13 Jul. 2022
Kommentiert: Abderrahim. B
am 14 Jul. 2022
xlabel('Energy (MeV)')
ylabel('Energy integrated neutron flux (a.u.)')
grid on
grid minor off
box on
0 Kommentare
Akzeptierte Antwort
Abderrahim. B
am 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 Kommentare
Abderrahim. B
am 14 Jul. 2022
You are welcome. If you found this answer helpful, accept it so that others with some issue can refer to it.
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu Particle & Nuclear Physics finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!