?? revschedule.m
字號:
% REVSCHEDULE(S) returns the reverse of message passing schedule S. See the% function MPP for more information on message passing schedules.function R = revschedule (S) % Get the number of edges. m = length(S); R = repmat(struct('i',0,'j',0),m,1); for u = 1:m i = S(u).i; j = S(u).j; v = m-u+1; R(v).i = j; R(v).j = i; end
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -