Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

ann_sample(1) [debian man page]

ANN_SAMPLE(1)							   User Commands						     ANN_SAMPLE(1)

NAME
ann_sample - Sample program for the ANN library SYNOPSIS
ann_sample [-d dim] [-max m] [-nn k] [-e eps] [-df data] [-qf query] DESCRIPTION
This is a sample program for the the Approximate Nearest Neighbor Searching library. Results are sent to the standard output. To run a demo, try: ann_sample -df /usr/share/doc/ann-tools/data.pts -qf /usr/share/doc/ann-tools/query.pts and compare the result with /usr/share/doc/ann-tools/sample.save OPTIONS
-d dim dimension of the space (default = 2) -max m maximum number of data points (default = 1000) -nn k number of nearest neighbors per query (default 1) -e eps the error bound (default = 0.0) -df data name of file containing data points -qf query name of file containing query points AUTHOR
Sunil Arya and David Mount COPYRIGHT
This man page is Copyright (C) 2007 Rafael Laboissiere <rafael AT debian DOT org> and released under the GNU GPL, version 3 or later. It was written for the Debian distribution but may be used by others. SEE ALSO
ann2fig (1) ANN 1.1.1 2011-12-10 ANN_SAMPLE(1)

Check Out this Related Man Page

slsh(1) 						      General Commands Manual							   slsh(1)

NAME
slsh -- interperter for S-Lang scripts SYNOPSIS
slsh [-i init-file] [-g] [-n] [-v] [--help] [--version] [-|file args] DESCRIPTION
This manual page documents briefly the slsh command. This manual page was written for the Debian distribution because the original program does not have a manual page. slsh is an interpreter for scripts written in the S-Lang language. OPTIONS
--help Show summary of options --version Show slsh version information -g Compile with debugging code, tracebacks, etc -n Don't load personal init file -i init-file Use this file instead of default -v Show verbose loading messages ENVIRONMENT VARIABLES
Upon startup, the program will try to load slsh.rc as follows: If either SLSH_CONF_DIR or SLSH_LIB_DIR environment variables exist, then look in the corresponding directories for slsh.rc. Otherwise look in: $(prefix)/etc (specified in Makefile) /usr/local/etc/ /usr/local/etc/slsh/ /etc/ /etc/slsh/ The slsh.rc file may load other files from slsh's library directory in the manner described below. Once slsh.rc is loaded, slsh will load $HOME/.slshrc if present. Finally, it will load the script specified on the command line. If the name of the script is ``-'', then it will be read from stdin. When a script loads a file via the built-in ``evalfile'' function or the ``require'' function (autoloaded by slsh.rc), the file is searched for along the SLSH_PATH as specified in the Makefile. An alternate path may be specified by the SLSH_PATH environment variable. The search path may be queried and set during run time via set the get_lib_path and set_lib_path functions, e.g., set_lib_path ("/home/bill/lib/slsh:/usr/share/slsh"); SEE ALSO
Examples of S-Lang scripts can be found in /usr/share/doc/slsh/examples/. AUTHOR
This manual page was written by Rafael Laboissiere <rafael@debian.org> for the Debian system (but may be used by others). Permission is granted to copy, distribute and/or modify this document under the terms of the GNU General Public License, Version 2 any later version pub- lished by the Free Software Foundation. On Debian systems, the complete text of the GNU General Public License can be found in /usr/share/common-licenses/GPL. slsh(1)
Man Page

3 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

unloading sql query to file

In unload to "/usr/home/data.012202" I wish to use a date variable as in unload to "/usr/home/data.`date`" for the file is that possible in a query to do, or will i need to add a mv command after the query to do it. I tried backquotes, , and () on `date` but didn't seem to work Thanks... (2 Replies)
Discussion started by: Link_02
2 Replies

2. Programming

sort data by date.. pls help

hi all, could anyone help me? I need to query output by compare dates from 2 table and i'm using a UNION query..and wanted to sort the output by date.. My query like this: SELECT TO_CHAR(DATE) DATE1, INVOICE FROM ACCOUNT1 WHERE DATE < (to_date('122003','MMYYYY')) UNION ... (2 Replies)
Discussion started by: kate katherine
2 Replies

3. Shell Programming and Scripting

Pivoting the data

Hello Unix guys, I have the following 4 column data, which is a output of db2 select query: Need to pivot the data. sample Input: Year Month Country Counts 2012 Aug Canada 114 2012 Aug USA 92 2012 Aug Mexico 3 2012 Aug ... (3 Replies)
Discussion started by: karumudi7
3 Replies