how can i get an interpolation formula?

4 ビュー (過去 30 日間)
rodrigo pallacan acuña
rodrigo pallacan acuña 2021 年 5 月 12 日
回答済み: Tanmay Das 2021 年 8 月 6 日
hi i would like to get an interpolation formula using: spline, pchip and makima for example:
clc;clear;close all
x=[1 2 3 4 5];
v=[0 1 0 1 0];
tt=linspace(1,5);
xq=1.5;
vq1=interp1(x,v,tt,'spline');
plot(x,v,'o',tt,vq1,'r')
legend('puntos','spline','location','southeast')

回答 (1 件)

Tanmay Das
Tanmay Das 2021 年 8 月 6 日
You can look into the interp1 function for 1-D data interpolation. You can go through various Interpolation methods to know more about implementing methods like spline, pchip and makima.

カテゴリ

Help Center および File ExchangeInterpolation についてさらに検索

製品

Community Treasure Hunt

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

Start Hunting!

Translated by