Changeset 14175
- Timestamp:
- Jul 12, 2007, 2:25:56 PM (19 years ago)
- Location:
- trunk/Ohana/src/opihi
- Files:
-
- 27 added
- 9 edited
-
cmd.basic/help/break (modified) (1 diff)
-
cmd.basic/help/continue (added)
-
cmd.basic/help/date (added)
-
cmd.basic/help/exec (modified) (1 diff)
-
cmd.basic/help/file (added)
-
cmd.basic/help/fprintf (added)
-
cmd.basic/help/getchr (added)
-
cmd.basic/help/list (added)
-
cmd.basic/help/local (added)
-
cmd.basic/help/pwd (modified) (1 diff)
-
cmd.basic/help/quit (modified) (1 diff)
-
cmd.basic/help/scan (modified) (1 diff)
-
cmd.basic/help/sleep (added)
-
cmd.basic/help/sprintf (added)
-
cmd.basic/help/strlen (added)
-
cmd.basic/help/strpop (added)
-
cmd.basic/help/substr (added)
-
cmd.basic/help/usleep (added)
-
cmd.basic/help/while (added)
-
cmd.data/help/close (added)
-
cmd.data/help/concat (modified) (1 diff)
-
cmd.data/help/create (modified) (1 diff)
-
cmd.data/help/cumulative (added)
-
cmd.data/help/delete (modified) (1 diff)
-
cmd.data/help/dimendown (added)
-
cmd.data/help/dimenup (added)
-
cmd.data/help/dot (added)
-
cmd.data/help/fit (modified) (2 diffs)
-
cmd.data/help/integrate (added)
-
cmd.data/help/interpolate (added)
-
cmd.data/help/peak (added)
-
cmd.data/help/periodogram (added)
-
cmd.data/help/queuedelete (added)
-
cmd.data/help/queueinit (added)
-
cmd.data/help/queuepush (added)
-
cmd.data/help/queuesize (added)
Legend:
- Unmodified
- Added
- Removed
-
trunk/Ohana/src/opihi/cmd.basic/help/break
r4686 r14175 1 1 2 break 2 break [-auto on/off] 3 3 4 4 halts macro, if, or for processes and returns to the basic prompt. 5 5 6 -auto: enables or disables DVO from automatically breaking 7 when it encounters an error 8 6 9 See also: macro, if, for 7 10 -
trunk/Ohana/src/opihi/cmd.basic/help/exec
r4686 r14175 1 1 2 exec ( or !) system function2 exec (shell command) 3 3 4 perform a UNIX system call. variables are parsed before5 the commands is passed to the UNIX shell.6 4 Allows a shell command to be run while running DVO 5 On the command line, this can also be done by placing a "!" before the shell 6 command -
trunk/Ohana/src/opihi/cmd.basic/help/pwd
r4686 r14175 1 1 2 pwd 2 pwd -var (variable) 3 3 4 4 print current working directory 5 5 6 Using -var will place the output into the specified variable. 7 Default: print to window -
trunk/Ohana/src/opihi/cmd.basic/help/quit
r4686 r14175 1 2 quit 3 4 Exit from DVO -
trunk/Ohana/src/opihi/cmd.basic/help/scan
r4686 r14175 2 2 scan (filename) (variable) [Nline] 3 3 4 place the Nth line in the file inthe named variable4 Place the Nth line of the file into the named variable 5 5 6 Default N value: 1 (the 1st line) 7 8 The variable recieves the line + 1 white space -
trunk/Ohana/src/opihi/cmd.data/help/concat
r4688 r14175 2 2 concat v1 v2 3 3 4 concatenates the values of vector v2to the end of vector5 v1, increasing the length of v1.4 Concatenates the values of vector v1 to the end of vector 5 v2, increasing the length of v2. 6 6 7 7 See also: subset, set 8 -
trunk/Ohana/src/opihi/cmd.data/help/create
r4688 r14175 1 1 2 create vector start end[delta]2 create (vector) (start) (end) [delta] 3 3 4 create a vector of uniformly spaced values, starting at5 start and going to end. By default the spacing is 1, but6 may be chosen with the deltaoption.4 Create a vector of uniformly spaced values, starting at 5 (start) and going to (end). By default the spacing is 1, but 6 may be chosen with the [delta] option. 7 7 8 Note: A vector cannot be created if an image buffer already 9 exists with the same name -
trunk/Ohana/src/opihi/cmd.data/help/delete
r4688 r14175 1 1 2 delete <buffer>2 delete (buffer/vector/variable) 3 3 4 delete the named buffer. Warning: no second chances are given!4 Delete the named buffer/vector/variable. 5 5 6 Warning: no second chances are given! 7 8 Note: Delete will remove the buffer/vector of a 9 given name first, then delete the variable of 10 the same name upon the second call. -
trunk/Ohana/src/opihi/cmd.data/help/fit
r4688 r14175 1 1 2 fit x y order [-dy wt]2 fit (-q) x y (order) (-dy wt) (-clip sig N) 3 3 4 4 perform a lease-square polynomial fit to the data defined … … 6 6 $C0, $C1, ..., and the order is placed in $Cn. 7 7 8 order: order of fit 9 -q: quiets the fit (no output to window) 10 -dy: take into account the error vector wt 11 -clip: remove outliers beyond sig*sigma from the fit; 12 perform N iterations of this 13 8 14 See also: applyfit 9 15
Note:
See TracChangeset
for help on using the changeset viewer.
