フィルターのクリア

How to write a function to find a value from a table.

1 回表示 (過去 30 日間)
me
me 2016 年 7 月 17 日
コメント済み: Star Strider 2016 年 7 月 18 日
I have a table that looks like this https://www.ohio.edu/mechanical/thermo/property_tables/air/air_Cp_Cv.html. I need to write a function with temperature as the input and the other three points of data as the output, but I am unsure of how to set up the code? How do I write a code that also interpolates if the temperature value is between two points of known data? I am very very new to matlab and am not at all sure how to even start. Any help would be greatly appreciated. Thank you in advance!
  2 件のコメント
Image Analyst
Image Analyst 2016 年 7 月 17 日
Is it a table, or a matrix of doubles? They're different and handled differently (look up table in the help if you don't understand why). Make it easy for us to help you by giving us code to generate the table variable, or matrix of doubles.
me
me 2016 年 7 月 18 日
it is the exact table on that site. I guess you could make a matrix of them instead. It doesn't matter which way it is done... the simplest way would be fine. essentially i would like to create a function for which i would input a Temperature and get the three specific heat values(Cp, Cv, and k). the code i have so far is not really relevant to the function...its where i plan to use the function to get those values. I am just not even sure how to do the function at all. As i said, I have very little experience with matlab.

サインインしてコメントする。

採用された回答

Star Strider
Star Strider 2016 年 7 月 17 日
I would use the interp1 function.
You can easily make a function from it:
M = [ 250 1.003 0.716 1.401
300 1.005 0.718 1.400
350 1.008 0.721 1.398
400 1.013 0.726 1.395];
CpCvk = @(TK) interp1(M(:,1), M(:,2:4), TK, 'linear', 'extrap');
T325 = CpCvk(325)
T325 =
1.0065 0.7195 1.399
  2 件のコメント
me
me 2016 年 7 月 18 日
Thank you so much for this!
Star Strider
Star Strider 2016 年 7 月 18 日
My pleasure!
I didn’t plot the table, so see if an interpolation method other than 'linear' (such has 'pchip') might be more appropriate.

サインインしてコメントする。

その他の回答 (0 件)

カテゴリ

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

Community Treasure Hunt

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

Start Hunting!

Translated by