Changes between Version 40 and Version 41 of coding_rules


Ignore:
Timestamp:
01/17/23 06:08:13 (2 years ago)
Author:
Mathieu Morlighem
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • coding_rules

    v40 v41  
    6161All MATLAB routines should start with a help (Example and See Also are not mandatory):
    6262{{{
    63 #!matlab
     63#!m
    6464function outputs=FunctionName(inputs)
    6565%FUNCTIONNAME - one line description
     
    8181
    8282{{{
    83 #!matlab
     83#!m
    8484function outputs=hello()
    8585%HELLO - prints hello to the screen
     
    9292Classes, functions, and other logical blocks of code should be folded (note the exact formatting used below):
    9393{{{
    94 #!matlab
     94#!m
    9595function foo() % {{{
    9696...