Summation of table imported from excel

1 次查看(过去 30 天)
So I have a table which was imported to matlab from an excel document. The table has 3 columns: Crankshaft angle, Volume, Pressure. I need to do a summation following this formula
The table has 720 rows of data.

采纳的回答

Mrutyunjaya Hiremath
% Assuming xls data strored in variabl 'data'
% colum 1 is Angle, colum 2 is Volume, colum 3 is Pressure
Win = 0;
for i = 2:720
Win0 = ((data(i,3) + data(i-1,3)) * (data(i,2) - data(i-1,2)))/2;
Win = Win + Win0;
end
disp(Win)

更多回答(0 个)

类别

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

产品

Community Treasure Hunt

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

Start Hunting!

Translated by