--Notes for MATLAB users touching Python --Sequential revision
--spyder It feels heavy and unsightly. I feel that Rstudio is inferior in perfection. --Enthought canopy I don't remember --visual studio heavy, windows --I think emacs + jedi.el + ipython is enough for completion --Atom, Subime + ipython I haven't tried it, but it's enough if it complements external modules.
startup If you run startup.m in MATLAB / in MATLAB /, it will be executed at startup, so I set the path there, but in ipython it is like "~ / .ipython / profile_default / startup / 00-hoge.py" It seems that you should write it. From the README below. I don't know windows.
This is the IPython startup directory
.py and .ipy files in this directory will be run *prior* to any code or files specified
via the exec_lines or exec_files configurables whenever you load this profile.
Files will be run in lexicographical order, so you can control the execution order of files
with a prefix, e.g.
00-first.py
50-middle.py
99-last.ipy
I wrote only this for the time being
import matplotlib.pyplot as plt
import numpy as np
――It has been improved in recent MATLAB, but the namespace is easy to understand. --Character code, especially escape is complicated --Ipython sometimes doesn't complement --Scraping is easy ――I feel that MATLAB is more flexible and better for graphs.
At first, I wasn't sure about the standard packages for statistics and image processing, regardless of standard processing.
It's almost like numpy
Simple functions are in numpy. After that, scipy.stats seems to be enough
Is skimage close to the number one IPT?
Recommended Posts