Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
Python 3.5 MATLAB 2013b
私は単純な配列を持っています。
MATLAB:
x = [1,2,3,4,5]; kurtosis(x)
1.7
パイソン:
def mykurtosis(x): return scipy.stats.kurtosis(x) x = [1,2,3,4,5] print(mykurtosis(x))
-1.3
異なる出力が表示されるのはなぜですか?
Python で定義するのは正しい方法ですか?