Trigonometric Interpolation for even functions.
1 次查看(过去 30 天)
显示 更早的评论
Hello, so I have this problem that I don't really even know how to start it, I would really apreciate if I would got some help, I don't really know how to put it into matlab context. Here is the text:
"Trigonometric interpolation for even functions. The function given by the table below is considered, a function assumed to be even and periodic for 2pi. Calculate the value of the polynomial T4f at the point a = 2 / pi relative to the nodes in the table."
Here is the table :

0 个评论
回答(1 个)
KSSV
2020-6-5
It is really a simple one. Read about interp1.
Say I have given (x,y=f(x)). I want to calculate value of y i.e f(x) at give x = xi; we use
yi = interp1(x,y,xi) ;
So you are provided with all the values.
3 个评论
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Logical 的更多信息
产品
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!