gpt4 book ai didi

graphics - 使用图形在 Mathematica 中进行插值/平滑

转载 作者:行者123 更新时间:2023-12-01 08:17:37 24 4
gpt4 key购买 nike

我试图平滑我在点之间绘制的路径。

请考虑 :

 lesPoints = {{41, 26}, {42, 29}, {41, 31}, {46, 30}, {48, 30}, 
{40, 30}, {43, 30}, {47, 30}, {48, 26}, {47, 20}}

这些是我用来追踪时间路径的真实眼睛注视坐标。

这就是我现在绘制它们的方式:
Graphics[{
Table[Arrow[{lesPoints[[i]], lesPoints[[i + 1]]}],
{i,Length[lesPoints] - 1}],
MapThread[Text[Style[#1, Large, FontFamily -> "Impact"], {#2, #3}] &,
PrependTo[Transpose[lesPoints], Range[1, Length@lesPoints]]]}]

enter image description here

在尝试使用插值时,我无法做任何正确的事情。

这是否是平滑路径的好方法,还有什么替代方法?

最佳答案

这样的事情怎么办

lesPoints = {{41, 26}, {42, 29}, {41, 31}, {46, 30}, {48, 30}, 
{40, 30}, {43, 30}, {47, 30}, {48, 26}, {47, 20}}

interpolation = Interpolation[Table[{i, lesPoints[[i]]}, {i, Length[lesPoints]}]]

路径然后变得像
plot = ParametricPlot[interpolation[t], {t, 1, Length[lesPoints]}];
Show[plot, Graphics[{Red, PointSize[0.02], Point /@ lesPoints}], Axes -> False]

结果:

smooth curve

关于graphics - 使用图形在 Mathematica 中进行插值/平滑,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6719321/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com