| Author |
Comment/Response |
yehuda ben-shimol
|
10/01/08 3:46pm
Hi,
Sin can take only one argument so this is the reason for the error message
you probably want something like the following
mypoints = {{1, 2}, {2, 6}, {6, 5}}
aaaaa = Fit[mypoints, {1, 1 Sin[x + 1]}, x]
Plot[aaaaa, {x, 1, 6},
Epilog -> {PointSize[0.02], Red, Point /@ mypoints},
PlotRange -> {{0, 7}, {0, 15}}]
yehuda
URL: , |
|