From 2e9dead925206436cafcff12bf7fe7204c29d4b6 Mon Sep 17 00:00:00 2001 From: Arnaud Delorme Date: Fri, 7 Jun 2024 14:02:46 -0700 Subject: [PATCH] Update EEGLAB_and_python.md --- others/EEGLAB_and_python.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/others/EEGLAB_and_python.md b/others/EEGLAB_and_python.md index e1f615e..2cc2005 100644 --- a/others/EEGLAB_and_python.md +++ b/others/EEGLAB_and_python.md @@ -57,7 +57,7 @@ designed for programmers. For example, indexed, beginning at 0 and ending at n-1 (in MATLAB and R, vectors begin at position 1 and end at n). Matrix manipulation in Python is not as intuitive as MATLAB. For example, the already non-intuitive Python code to concatenate arrays - np.concatenate((np.array(\[\[/1,_2\],_\[5,_6\|1, 2\], \[5, + np.concatenate((np.array(\[\[1,_2\],_\[5,_6\|1, 2\], \[5, 6\]\]), np.array(\[1, 2\]))) will fail because, unlike MATLAB, 1-D vectors are not compatible with 2-D matrices by default - and need explicit conversion. Compare to MATLAB simpler notation \[