Import data to splinetool create spline with function

조회 수: 1 (최근 30일)
Gavin Seddon
Gavin Seddon 2017년 8월 15일
댓글: Gavin Seddon 2017년 8월 23일
Hello, initially I created a spline with cftool. Is it possible to import the same data to splinetool and generate the function? GS.
  댓글 수: 1
Gavin Seddon
Gavin Seddon 2017년 8월 16일
Hello, I should mention that I only want to provide evidence of a trigonometric spline so it is mainly importing data and if possible some evidence sine or cosine being used in the knot. GS.

댓글을 달려면 로그인하십시오.

채택된 답변

Faiz Gouri
Faiz Gouri 2017년 8월 17일
I understand that you have created a spline using 'cftool' and would like to use the same in 'splinetool'. You can do so by taking a function handle and use it in 'splinetool' An example follows: You can construct a cubic spline interpolant that matches the cosine function at the following sites x, using the csapi command.
x = 2*pi*[0 1 .1:.2:.9];
y = cos(x);
cs = csapi(x,y);
You can then view the interpolating spline by using fnplt and get its handle-
h = fnplt(cs,2);
Now, you can use 'h' in 'splinetool' when it prompts you to import your own data.
Hope this helps!
  댓글 수: 3
Gavin Seddon
Gavin Seddon 2017년 8월 21일
Yes this works, thank you.
Gavin Seddon
Gavin Seddon 2017년 8월 23일
Is it possible to use all the x data from a table for input to this ? GS.

댓글을 달려면 로그인하십시오.

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Spline Postprocessing에 대해 자세히 알아보기

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by