Interpolation - Fourier interpolant (i.e. trigonomentric) & Using Gauss-Legendre polynomial
조회 수: 2 (최근 30일)
이전 댓글 표시
For example, f(x) = cos(x) in [-pi,pi]
1)I want to find Fourier(trigonomentric) interpolant. Is there any built in function for this interpolation? (such as 'interp1') If not, how can I do? Please give me some useful link or hint!
2)I want to find Gauss-Legendre polynomial of degree n(specified) My note says that if I use Gauss points and weights on the interval [1,1] I can find it. But actually i even don't know about Gauss points. (So I tried in wiki, but there wasn't) Same as 1) someone can give me some useful link or hint? Surely, built in function is nice if it exists.
댓글 수: 2
John D'Errico
2017년 6월 15일
No, interp1 does not offer a Fourier interpolant.
You have it backwards on the Gauss-Legendre. You get nodes and weights from the polynomials.
There is a legendre function in MATLAB, that does return Legendre polynomials. Or I recall that my sympoly toolbox does have an orthpoly tool in it, that allows generation of polynomial families of all the standard types, in sympoly form.
Chaitral Date
2017년 6월 20일
There is a function in MATLAB called as "interpft" which you can use for Fourier Interpolation. See the below link for more information,
If the above function does not serve the purpose, please let us know your used case.
답변 (0개)
참고 항목
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!