📄 inittoolbox.m
字号:
% Toolbox initialization script. Needs to be called once per session.% For toolbox version 1.0, Jan. 2004, koa, CAS-KTH% Clear command windowclc;disp(' ');disp(' The CAS Robot Navigation Toolbox version 1.0');disp(' Copyright (c) 2004 CAS-KTH');disp(' This is free software without any warranty. You are');disp(' welcome to redistribute it under the conditions described');disp(' in the licence files included in this distribution');disp(' ');% Add all paths of the toolbox recursively% (this command works on all platforms)path(path,genpath(pwd));% Call chi2invtable once to put table into memory% (not needed but accelerates first call)chi2invtable(0.5,2);% Add your initializations here if needed% ...% ...% Notify userdisp('inittoolbox: Paths added, lookup table in memory');
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -