?? ft_comment_block.m
字號(hào):
%--------------------------------------------------------------------- % function [block] = FT_comment_block(block)% % Add comment char in front of all lines in a block%% block: block structure%% Part of the SimTools package% Andreas Freise 22.05.08 afreise@googlemail.com%--------------------------------------------------------------------- function [block] = FT_comment_block(block) baseid='FT_comment_lines_in_block'; if (~isstruct(block)) msgid=[baseid,':checkinarg']; result='first input argument must be a block structure'; error(msgid,result); end lines=1:block.n_lines; block=FT_comment_lines_in_block(block,lines);
?? 快捷鍵說明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號(hào)
Ctrl + =
減小字號(hào)
Ctrl + -