annotate trunk/src/Scripts/plot_feature_tracks.m @ 706:f8e90b5d85fd
tip
Delete CARFAC code from this repository.
It has been moved to https://github.com/google/carfac
Please email me with your github username to get access.
I've also created a new mailing list to discuss CARFAC development:
https://groups.google.com/forum/#!forum/carfac-dev
author |
ronw@google.com |
date |
Thu, 18 Jul 2013 20:56:51 +0000 |
parents |
ed91095d9240 |
children |
|
rev |
line source |
tomwalters@305
|
1 figure
|
tomwalters@305
|
2 plot(data_r(1,:), 'b-');
|
tomwalters@305
|
3 hold on
|
tomwalters@305
|
4 plot(data_r(2,:), 'b--');
|
tomwalters@305
|
5 plot(data_r(3,:), 'b:');
|
tomwalters@305
|
6
|
tomwalters@305
|
7
|
tomwalters@305
|
8 plot(data2_r(1,:), 'r-');
|
tomwalters@305
|
9 hold on
|
tomwalters@305
|
10 plot(data2_r(2,:), 'r--');
|
tomwalters@305
|
11 plot(data2_r(3,:), 'r:'); |