📄 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 + -