作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我试图平滑我在点之间绘制的路径。
请考虑 :
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]]]}]
最佳答案
这样的事情怎么办
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]
关于graphics - 使用图形在 Mathematica 中进行插值/平滑,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6719321/
我是一名优秀的程序员,十分优秀!