MATLAB: How to find the volume from a set of 500 datas

2 stroke enginecrank angle and pressureMATLABset of data

Inside a 2 stroke engine, I have a set of data of crank angle and pressure, which is huge (500). And I need to find the volume of the cylinder,
I know the value of Vd, theta, r and R.
I already import the data into Matlab.
My problem is how can I write the matlab code so that I can get the plot of Pressure and theta?

Best Answer

plot(Data(:,1), Data(:,2))
Related Question