How to find the volume from a set of 500 datas?

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?

2 Commenti

Mahdi
Mahdi il 3 Apr 2013
Modificato: Mahdi il 3 Apr 2013
Is the data that you show the pressure and theta values?
Side note: I suggest that you give your filenames more descriptive titles than "equation", "exercise", and "E".
Yes, the left side is the theta, and the right column is the pressure.

Accedi per commentare.

 Risposta accettata

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

4 Commenti

Sorry, use
plot(data(:,1), data(:,2))
I used a different variable name than what you had.
THank you.
But how to show on the title on the axis?
I assume you want to add a title to the plot? After using the plot line, type
title('What you want the title to be')

Accedi per commentare.

Più risposte (0)

Categorie

Scopri di più su Powertrain Blockset in Centro assistenza e File Exchange

Richiesto:

J K
il 3 Apr 2013

Community Treasure Hunt

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

Start Hunting!

Translated by