?? gui_extract_time.m
字號:
function gui_extract_time;
% EXTRACT_TIME extract time series from data set and define it
% as observation time
%
% last modified 28.08.07
global TS
if length(TS.data(1,:))==1
helpdlg('You have only 1 time series and you can''t define it as time','Operation cancelled');
return
end
str=TS.name;
[selection,ok] = listdlg('PromptString','Select data to extract as time:',...
'SelectionMode','single','ListString',str);
if ok
time=TS.data(:,selection);
TS.data(:,selection)=[];
TS.name(selection)=[];
TS.time=time;
end
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -