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.
MATLAB の「fit」関数と同じ Python 関数を探しています。
具体的には、次の MATLAB コードに似たものを探しています。
fi = fit(bins, z, cubicinterp)
z と bins はリストです。
正直なところ、Python には何百もの関数があり、まさにあなたがやりたいこと (およびそれ以上) を実行できると思います。
これは NumPy を使用した 1 つの例ですが、真剣にググってみてください。
numpy.polyfit