Data interpolation from graph

4 ビュー (過去 30 日間)
Manish Kumar
Manish Kumar 2019 年 3 月 20 日
編集済み: Andrea Monfredini 2019 年 3 月 20 日
Dear Experts,
I have x1 (first column of Book1 excel sheet) and y1 (2nd column of excel sheet Book1). From this data I want to interpolate the y2 data for the x2 (1st column of excel sheet Book2). How to do it ?

採用された回答

Andrea Monfredini
Andrea Monfredini 2019 年 3 月 20 日
編集済み: Andrea Monfredini 2019 年 3 月 20 日
n = 10; %the sample size
x1 = linspace(0,5,n); %this is to simulate your x1
y1 = rand(1,n); %this is to simulate your y1
p = polyfit(x1,y1,n)
x2 = linspace(0,5,10000); %this is to simulate x2, that should be the domain of the interpolating function
y2 = polyval(p,x2)
scatter(x1,y1)
hold on;
plot(x2,y2)

その他の回答 (0 件)

カテゴリ

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