- Status: Active
- Scope: Universal (Applies to all NDR implementations)
- Python uses 0-indexing internally.
- User-facing concepts (Epochs, Channels) use 1-based numbering in both languages.
- Python code accepts
channel_number=1from user, maps todata[0]internally.
- Prefer NumPy over lists for numerical data.
- MATLAB
doublearray ->numpy.ndarrayin Python.
- Python returns multiple values as a tuple in MATLAB signature order.
- MATLAB
1/0(logical) -> PythonTrue/False.
- MATLAB
charandstring-> Pythonstr. - MATLAB cell array of strings -> Python
list[str].
- No silent failures. If MATLAB errors, Python raises an exception.