Please I have a code, when I run, it keeps saying: "Error using grid First argument must be an axes handle".
8 ビュー (過去 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!