pts = {{0.`, -1.`, 0.`}, {-0.2411`, -0.94`, 
   0.2412`}, {-0.3831`, -0.842`, 0.3798`}, {-0.4355`, -0.715`, 
   0.547`}, {-0.5892`, -0.5859`, 0.5564`}}
Graphics3D[{Red, PointSize[0.03], Point /@ pts, Blue, 
  Line /@ Partition[pts, 2, 1]}]

Mathematica三维点插值算法(高维插值,多维插值)

 

g[x_, y_] := 
 Evaluate[InterpolatingPolynomial[{{#[[1]], #[[2]]}, #[[3]]} & /@ 
    pts, {x, y}]]
g[x, y] // Expand
ContourPlot[g[x, y], {x, -1, 0}, {y, -1, 0}, 
 Epilog -> {Red, PointSize[0.03], Point[{#[[1]], #[[2]]}] & /@ pts}]

Mathematica三维点插值算法(高维插值,多维插值)

相关文章:

  • 2021-11-03
  • 2021-10-01
  • 2021-12-18
  • 2021-12-02
  • 2021-12-06
  • 2022-02-22
  • 2021-12-26
  • 2021-08-31
猜你喜欢
  • 2022-01-31
  • 2021-05-18
  • 2022-02-09
  • 2022-12-23
  • 2022-02-05
  • 2022-02-15
相关资源
相似解决方案