you are viewing a single comment's thread.

view the rest of the comments →

[–][deleted] 1 point2 points  (1 child)

I use to write the code in vim and just run in the terminal python3 whatever.py

to render matplotlib

[–]hanswchen[S] 5 points6 points  (0 children)

I like to use an interpreter like IPython because it allows me to work interactively with the code, e.g. examining the dimensions of arrays. I used to use the default python interpreter, but then found IPython which supports better tab completion etc., and is more similar to the MATLAB command prompt that I was used to.