Changeset 40545
- Timestamp:
- Oct 19, 2018, 10:16:47 PM (8 years ago)
- Location:
- trunk/Ohana/src/opihi/cmd.data
- Files:
-
- 1 added
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Ohana/src/opihi/cmd.data/Makefile
r40522 r40545 113 113 $(SRC)/ps.$(ARCH).o \ 114 114 $(SRC)/print_vectors.$(ARCH).o \ 115 $(SRC)/mprint.$(ARCH).o \ 115 116 $(SRC)/queuedelete.$(ARCH).o \ 116 117 $(SRC)/queuedrop.$(ARCH).o \ -
trunk/Ohana/src/opihi/cmd.data/init.c
r40522 r40545 89 89 int medimage_command PROTO((int, char **)); 90 90 int mset PROTO((int, char **)); 91 int mprint PROTO((int, char **)); 91 92 int needles PROTO((int, char **)); 92 93 int nnet_command PROTO((int, char **)); … … 99 100 int point PROTO((int, char **)); 100 101 int ps PROTO((int, char **)); 101 int print_vectorsPROTO((int, char **));102 int vprint PROTO((int, char **)); 102 103 int queuelist PROTO((int, char **)); 103 104 int queueload PROTO((int, char **)); … … 274 275 {1, "mset", mset, "insert a vector in an image"}, 275 276 {1, "imset", mset, "insert a vector in an image"}, 277 {1, "mprint", mprint, "print a region of an image"}, 276 278 {1, "needles", needles, "plot vectors needles"}, 277 279 {1, "nnet", nnet_command, "Neural Network commands"}, … … 285 287 {1, "ppm", jpeg, "convert display graphic to PPM"}, 286 288 {1, "ps", ps, "convert display to PostScript"}, 287 {1, "print_vectors", print_vectors, "print a set of vectors"}, 289 {1, "print_vectors", vprint, "print a set of vectors"}, 290 {1, "vprint", vprint, "print a set of vectors"}, 288 291 {1, "queuedelete", queuedelete, "delete a queue"}, 289 292 {1, "queuedrop", queuedrop, "drop values from queue matching a key"}, -
trunk/Ohana/src/opihi/cmd.data/print_vectors.c
r40291 r40545 1 1 # include "data.h" 2 2 3 int print_vectors(int argc, char **argv) {3 int vprint (int argc, char **argv) { 4 4 5 5 Vector **vec; … … 21 21 22 22 if (argc < 2) { 23 gprint (GP_ERR, "USAGE: print_vectors (vector)[,vector,...]\n");23 gprint (GP_ERR, "USAGE: vprint (vector)[,vector,...] [-s start] [-e end]\n"); 24 24 return (FALSE); 25 25 }
Note:
See TracChangeset
for help on using the changeset viewer.
