📄 startupapproxrl.m
字号:
% Add to path all directories required for approximate RL to workcrt = pwd;addpath(genpath(pwd));% try finding lib as subdir...addpath(genpath([pwd '\lib']));% ... and/or as sibling directoryslashind = strfind(crt, '\');if ~isempty(slashind) && (slashind(end) > 1), parent = crt(1:slashind(end)-1); addpath(genpath([parent '\lib']));end;% save the pathsavepath;% END startupapproxrl
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -