How to extract specific data from the data files?

1 次查看(过去 30 天)
Hello,
CL = [ 0.572526 0.601916 0.631107 ];
CD = [ 0.024868 0.025337 0.025902 ];
How to output the value of CD when CL is 0.6?
I want to use linear interpolation but I don't know how to do.
Thakns for reading.
  2 个评论
Ameer Hamza
Ameer Hamza 2020-10-5
What model does the data follow? Linear? Polynomial? Or is there some other nonlinear relation between CL and CD?

请先登录,再进行评论。

采纳的回答

KSSV
KSSV 2020-10-5
编辑:KSSV 2020-10-5
iwant = interp1(CL,CD,0.6)
This is the procedure:
CL = [ 0.572526 0.601916 0.631107 ];
CD = [ 0.024868 0.025337 0.025902 ];
xi = 0.6 ;
yi = interp1(CL,CD,xi) ;
plot(CL,CD)
hold on
plot(xi,yi,'*r')

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Interpolation 的更多信息

Community Treasure Hunt

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

Start Hunting!

Translated by