当我执行plot命令时,我的 Octave 崩溃了。我在Assad Ebrahim 的回答中找到了解决方案。他提到将默认工具包切换到gnuplot,octave.rc如果我想永久进行更改,请在文件中更改它,但我不清楚octaverc. 当我octaverc用记事本++打开时,它看起来像这样:
## System-wide startup file for Octave.
##
## This file should contain any commands that should be executed each
## time Octave starts for every user at this site.
EXEC_PATH (cstrcat (fullfile (OCTAVE_HOME, 'notepad++'), pathsep,
EXEC_PATH));
EXEC_PATH (cstrcat (fullfile (OCTAVE_HOME, 'bin'), pathsep, EXEC_PATH));
EDITOR (fullfile (OCTAVE_HOME, 'notepad++', 'notepad++.exe'));
Run Code Online (Sandbox Code Playgroud)
我应该改变什么以及如何改变?