#
# -----------------------------------------------------------------------------
#
# A license is hereby granted to reproduce this software source code and
# to create executable versions from this source code for personal,
# non-commercial use.  The copyright notice included with the software
# must be maintained in all copies produced.
#
# THIS PROGRAM IS PROVIDED "AS IS". THE AUTHOR PROVIDES NO WARRANTIES
# WHATSOEVER, EXPRESSED OR IMPLIED, INCLUDING WARRANTIES OF
# MERCHANTABILITY, TITLE, OR FITNESS FOR ANY PARTICULAR PURPOSE.  THE
# AUTHOR DOES NOT WARRANT THAT USE OF THIS PROGRAM DOES NOT INFRINGE THE
# INTELLECTUAL PROPERTY RIGHTS OF ANY THIRD PARTY IN ANY COUNTRY.
#
# Copyright (c) 1995, John Conover, All Rights Reserved.
#
# Comments and/or bug reports should be addressed to:
#
#     john@johncon.com (John Conover)
#
# -----------------------------------------------------------------------------
#
# The data may be viewed using gnuplot, with the command
# "gnuplot plot"
#
# $Revision: 0.0 $
# $Date: 1995/11/08 23:52:59 $
# $Id: plot,v 0.0 1995/11/08 23:52:59 john Exp $
# $Log: plot,v $
# Revision 0.0  1995/11/08 23:52:59  john
# Initial version
#
#
set grid
show grid
set title "Root Mean Square value of Normalized Increments"
show title
set xlabel "Time Samples in Interval"
show xlabel
set ylabel "RMS"
show ylabel
plot "tsrms" with lines, "tslsq" with lines, "tslogreturns" with lines, "tsnormal" with lines, 0.002 * sqrt (x)
pause -1
