Octave style guide: Difference between revisions

32 bytes removed ,  20 December 2023
m
 
(One intermediate revision by the same user not shown)
Line 19: Line 19:
Use only spaces, and indent 2 spaces at a time.
Use only spaces, and indent 2 spaces at a time.


We use spaces for indentation. Absolutely '''do not use tabs''' in your code.
Absolutely '''do not use tabs''' in your code. You should probably set your editor to emit spaces when you hit the tab key.
You should probably set your editor to emit spaces when you hit the tab key.


=== Whitespace ===
=== Whitespace ===
Line 139: Line 138:
Avoid reusing the names of other functions as local variable names.  For
Avoid reusing the names of other functions as local variable names.  For
example, avoid naming local variables {{codeline|abs}},
example, avoid naming local variables {{codeline|abs}},
{{codeline|log}}, or {{codeline|pow}}.  These names might be used later to try to call the function with that name, but instead will refer to a local variable, leading to very confusing errors.
{{codeline|log}}, or {{codeline|pow}}.  These names might be used later to try to call the function of that name, but instead will refer to a local variable, leading to very confusing errors.


An exception is the use of {{codeline|i}} and {{codeline|j}} as loop indices.
An exception is the use of {{codeline|i}} and {{codeline|j}} as loop indices.
1,072

edits