Commit 267f6d32281e3fcf85a8805ed3615806d8fe240c
1 parent
0e276f2006
Exists in
master
update help header
Showing 1 changed file with 7 additions and 3 deletions Side-by-side Diff
dat2allan.m
1 | 1 | #!/usr/bin/octave-cli -q |
2 | 2 | |
3 | -# allanplot.m computes Allan deviation from temporal dataset | |
3 | +# dat2allan.m computes Allan deviation from temporal dataset and disp the result to stdout (with tab spaced values) | |
4 | 4 | # |
5 | -# use : allanplot.m file.dat column_i gain_i ad_opt | |
6 | -# allanplot.m file.dat [column_i,column_j] [gain_i,gain_j] [ad_opt_i,ad_opt_j] | |
5 | +# use with gnuplot: | |
6 | +# set log xy | |
7 | +# set format "%E" | |
8 | +# plot "< dat2allan.m 'file.dat' column_i gain_i ad_opt" u 1:2:3 with yerrorlines | |
9 | +# or | |
10 | +# plot "< dat2allan.m 'file.dat' [column_i,column_j] [gain_i,gain_j] [ad_opt_i,ad_opt_j]" u 1:2:3 with yerrorlines | |
7 | 11 | # |
8 | 12 | # inputs: |
9 | 13 | # file.dat : [string] file to load |