MathGroup Archive 2011

[Date Index] [Thread Index] [Author Index]

Search the Archive

Re: Interpolation of a tabulated function

  • To: mathgroup at smc.vnet.net
  • Subject: [mg115567] Re: Interpolation of a tabulated function
  • From: David Skulsky <edskulsky at gmail.com>
  • Date: Sat, 15 Jan 2011 04:43:23 -0500 (EST)
  • Reply-to: comp.soft-sys.math.mathematica at googlegroups.com

I think you need to use Interpolation:

f = Interpolation[{{1, 4}, {2, 5}, {2.5, 6}, {2.7, 7}, {3, 11}}]

Plot[f[x], {x, 1, 3}]

David


  • Prev by Date: Re: question on diophantine equations in Mathematica
  • Next by Date: How to force numeric output
  • Previous by thread: Interpolation of a tabulated function
  • Next by thread: Re: Interpolation of a tabulated function