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)