📄 delevent.m
字号:
%
% Performance evaluation, 2005
% Homework 3, tutorial
%
% Ruben Merz, http://icapeople.epfl.ch/rmerz
%
% Add an event to the event list of the scheduler
%
function evSched = delEvent(evSched)
% Remove the event at the top of the queue
% We do not have to sort the list, already sorted
evSched.evList = evSched.evList(2:end,:);
evSched.evListLength = evSched.evListLength-1;
%fprintf('Event deleted, evList length = %d\n',evSched.evListLength);
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -