Changes between Version 40 and Version 41 of coding_rules
- Timestamp:
- 01/17/23 06:08:13 (2 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
coding_rules
v40 v41 61 61 All MATLAB routines should start with a help (Example and See Also are not mandatory): 62 62 {{{ 63 #!m atlab63 #!m 64 64 function outputs=FunctionName(inputs) 65 65 %FUNCTIONNAME - one line description … … 81 81 82 82 {{{ 83 #!m atlab83 #!m 84 84 function outputs=hello() 85 85 %HELLO - prints hello to the screen … … 92 92 Classes, functions, and other logical blocks of code should be folded (note the exact formatting used below): 93 93 {{{ 94 #!m atlab94 #!m 95 95 function foo() % {{{ 96 96 ...