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