i have two tables, 1table is for power and other one is for area, if do have data in table 1

1 次查看(过去 30 天)
i have two tables, 1table is for power and other one is for area, if I do have data in table 1 how would i know the equivalent value on that number to table 2? table 1 ranges 700-800 and table2 ranges 100-300..
TABLE same as here
POWER(700-800) AREA(100-300)
800 300
799 299
798 298
... ....
... ...
down to 1 down to 1

采纳的回答

C.J. Harris
C.J. Harris 2011-12-23
You could use one of Matlab's interpolation functions. Just ensure that your power and area tables are the same size. See:
doc interp1
Example:
mPower = [700 750 800];
mArea = [100 200 300];
mInputPower = 720;
outputArea = interp1(mPower, mArea, mInputPower);
  4 个评论
john john
john john 2012-1-10
i got a new problem now, if ever i get a decimal result like 701.2,703.2 or any decimal value? can interp handle that?

请先登录,再进行评论。

更多回答(0 个)

类别

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

Community Treasure Hunt

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

Start Hunting!

Translated by