added simple matlab script for analyzing logfiles

This commit is contained in:
Johannes Reinhardt 2008-07-14 01:19:53 +02:00
джерело 4409ebfd39
коміт 41776798dc
1 змінених файлів з 17 додано та 0 видалено

17
analyze.m Normal file

@ -0,0 +1,17 @@
clear all;
close all;
v = [];
velocity0;
vr = v;
v = [];
simulation0;
vs = v;
clear v;
plot(vs(:,1),vs(:,4),vr(:,1),vr(:,4));
figure(2)