added simple matlab script for analyzing logfiles

このコミットが含まれているのは:
Johannes Reinhardt 2008-07-14 01:19:53 +02:00
コミット 41776798dc
1個のファイルの変更17行の追加0行の削除

17
analyze.m ノーマルファイル
ファイルの表示

@ -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)