For example i have 5 point like this,
(1,1) (2,-1) (3,2) (4,-2) (5,2)
Now, 1> i wanna a function to interpolation these points in matlab. 2> i want to Plot this function. 3> read a number from input and write F(x) to output.how do this??
|
For example i have 5 point like this,
Now, 1> i wanna a function to interpolation these points in matlab. 2> i want to Plot this function. 3> read a number from input and write F(x) to output.how do this?? |
|||||||
|
|
To fit a polynom to given datapoints you can use In your case:
And then to plot, taken from example
Or, to make a prettier plot of the polynomial (instead of above plot)
|
||||
|
|
|
If you want polynomial interpolation, take a look at the http://www.mathworks.co.uk/help/matlab/ref/polyfit.html If you split your points into 2 vectors of respective x and y coordinates, you can simply obtain your interpolating polynomial coefficients in a vector
and based on your data above, your x and y vectors are
|
|||||||||
|
|
If you are not sure what a good fit would be and want to try out different fit, use the curve fitting toolbox, Another option would be to use |
|||
|
|