From 267f6d32281e3fcf85a8805ed3615806d8fe240c Mon Sep 17 00:00:00 2001 From: bma Date: Fri, 23 Nov 2018 10:38:02 +0100 Subject: [PATCH] update help header --- dat2allan.m | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/dat2allan.m b/dat2allan.m index 5e02b0b..75bea36 100755 --- a/dat2allan.m +++ b/dat2allan.m @@ -1,9 +1,13 @@ #!/usr/bin/octave-cli -q -# allanplot.m computes Allan deviation from temporal dataset +# dat2allan.m computes Allan deviation from temporal dataset and disp the result to stdout (with tab spaced values) # -# use : allanplot.m file.dat column_i gain_i ad_opt -# allanplot.m file.dat [column_i,column_j] [gain_i,gain_j] [ad_opt_i,ad_opt_j] +# use with gnuplot: +# set log xy +# set format "%E" +# plot "< dat2allan.m 'file.dat' column_i gain_i ad_opt" u 1:2:3 with yerrorlines +# or +# 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 # # inputs: # file.dat : [string] file to load -- 2.16.4