Changes between Version 9 and Version 10 of coding_rules


Ignore:
Timestamp:
06/16/20 09:21:59 (5 years ago)
Author:
jdquinn
Comment:

Links to NumPy resources

Legend:

Unmodified
Added
Removed
Modified
  • coding_rules

    v9 v10  
    103103}}}
    104104
    105 == Variable/Enum/Functions Names ==
     105=== !NumPy/SciPy ===
     106!NumPy and !SciPy are used extensively in the Python interface to ISSM to replicate MATLAB-native functionality. When translating modules or tests, for example, from MATLAB to Python, the following sources may come in handy:
     107- [https://numpy.org/devdocs/user/numpy-for-matlab-users.html NumPy for Matlab users | NumPy]
     108- [http://mathesaurus.sourceforge.net/matlab-numpy.html NumPy for MATLAB users | mathesaurus.sourceforge.net]
     109
     110== !Variable/Enum/Function Names ==
    106111
    107112 - variables should not use capital letters. Use underscores to make variables more understandable.