我認爲這將是有趣的,如果人們共享捷徑(或mfiles),他們通常在Matlab中使用,以提高他們的生產力。MATLAB快捷方式
下面是我的一些:
% Shortcut 1
clear all
close all
clc
try
dbquit('all')
end
% Shortcut 2 - Show complexity of current m-file
mlint(editorservices.getActive().Filename,'-cyc','-id')
% Shortcut 3 - Start debugging
dbstop if error
dbstop if caught error
dbstop if warning
% Shortcut 4 - Stop debugging
dbclear if error
dbclear if caught error
dbclear if warning
我也使用測試,使快捷方式,但它們是針對我的代碼。
你應該把這個問題社會的維基,或者人們將其關閉。 – Lucas
這應該是一個社區維基。 –