Python/SciPy:如何从CubicSpline获取三次样条方程 [英] Python/SciPy: How to get cubic spline equations from CubicSpline

查看:1889
本文介绍了Python/SciPy:如何从CubicSpline获取三次样条方程的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我正在通过一组给定的数据点生成三次样条图:

import matplotlib.pyplot as plt
import numpy as np
from scipy import interpolate

x = np.array([1, 2, 4, 5])  # sort data points by increasing x value
y = np.array([2, 1, 4, 3])
arr = np.arange(np.amin(x), np.amax(x), 0.01)
s = interpolate.CubicSpline(x, y)
plt.plot(x, y, 'bo', label='Data Point')
plt.plot(arr, s(arr), 'r-', label='Cubic Spline')
plt.legend()
plt.show()

如何从CubicSpline获取样条方程式?我需要以下形式的方程式:

我尝试了各种方法来获取系数,但是它们都使用了使用除数据点以外的其他数据获得的数据.

解决方案

来自 解决方案

From the documentation:

c (ndarray, shape (4, n-1, ...)) Coefficients of the polynomials on each segment. The trailing dimensions match the dimensions of y, excluding axis. For example, if y is 1-d, then c[k, i] is a coefficient for (x-x[i])**(3-k) on the segment between x[i] and x[i+1].

So in your example, the coefficients for the first segment [x1, x2] would be in column 0:

  • y1 would be s.c[3, 0]
  • b1 would be s.c[2, 0]
  • c1 would be s.c[1, 0]
  • d1 would be s.c[0, 0].

Then for the second segment [x2, x3] you would have s.c[3, 1], s.c[2, 1], s.c[1, 1] and s.c[0, 1] for y2, b2, c2, d2, and so on and so forth.

For example:

x = np.array([1, 2, 4, 5])  # sort data points by increasing x value
y = np.array([2, 1, 4, 3])
arr = np.arange(np.amin(x), np.amax(x), 0.01)
s = interpolate.CubicSpline(x, y)

fig, ax = plt.subplots(1, 1)
ax.hold(True)
ax.plot(x, y, 'bo', label='Data Point')
ax.plot(arr, s(arr), 'k-', label='Cubic Spline', lw=1)

for i in range(x.shape[0] - 1):
    segment_x = np.linspace(x[i], x[i + 1], 100)
    # A (4, 100) array, where the rows contain (x-x[i])**3, (x-x[i])**2 etc.
    exp_x = (segment_x - x[i])[None, :] ** np.arange(4)[::-1, None]
    # Sum over the rows of exp_x weighted by coefficients in the ith column of s.c
    segment_y = s.c[:, i].dot(exp_x)
    ax.plot(segment_x, segment_y, label='Segment {}'.format(i), ls='--', lw=3)

ax.legend()
plt.show()

这篇关于Python/SciPy:如何从CubicSpline获取三次样条方程的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆