CommentBlocks.m 291 B

12345678910111213
  1. function CommentBlocks(handles, out)
  2. %COMMENTOUTBLOCKS 此处显示有关此函数的摘要
  3. % 此处显示详细说明
  4. for i = 1:length(handles)
  5. if out == 1
  6. set_param(handles(i), 'Commented', 'on');
  7. else
  8. set_param(handles(i), 'Commented', 'off');
  9. end
  10. end
  11. end