MATLAB for GROMACS MD Analysis

Brief description of tools/files:
Does anyone know if it is possible to process and analyze GROMACS MD output files in MATLAB? I would like to analyze mainly velocity, forces, acceleration and solve some stochastic DEs. Thanks in advance for the advise.

Link:
Contact person (name and email address):

How the work has been tested/reviewed:

Hi Oama,

I usually extract the velocity as xvg file from gromacs by gmx traj, gmx energy. Then, use file = fopen('filename') to open in MATLAB, so I can use tline = fgetl(file) to read the file one line by one line.
Hope it can provide some idea for how to use MATLAB for MD post-processing.

Wade