【问题标题】:Creating parametric equations using points使用点创建参数方程
【发布时间】:2016-12-03 19:13:14
【问题描述】:

我有积分,x, yt,其中t=1,...,Length[x]。我希望使用interpolation 的想法制作两个参数方程,但不使用 Mathematica 中的方法。有什么建议吗?

【问题讨论】:

    标签: cubic-spline parametric-equations function-interposition


    【解决方案1】:

    让我们使用 BSpline 插值。有工作示例:

    数据准备:

    t = Range[10];
    x = t*Sin[t];
    y = t*Cos[t];
    pts = Transpose[{t, x, y}]
    

    绘制结果

    Graphics3D[{BSplineCurve[pts], Green, Line[pts], Red, Point[pts]}]
    

    【讨论】:

      猜你喜欢
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      相关资源
      最近更新 更多