?? gui_recurrence_plot.m
字號:
function gui_recurrence_plot
% last modified 10.01.05
global TS
str=TS.name;
[selection_1,ok] = listdlg('PromptString','Select fist time series:',...
'SelectionMode','single','ListString',str);
if ~ok
return
end
[selection_2,ok] = listdlg('PromptString','Select second time series:',...
'SelectionMode','single','ListString',str);
if ~ok
return
end
recurrence_plot(TS.data(:,selection_1),TS.data(:,selection_2));
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -