Description Usage Arguments Value Author(s) See Also Examples
Load the LSH index and data. If many queries are going to be performed it is advantageous
to load this object first and then hand it to eiQuery
via the
lshData
parameter for each query.
If the data needs to be freed you can call the freeLSHData
function.
1 |
r |
The number of references used to build the database you wish to query against. |
d |
The number of dimensions used to build the database you wish to query against. |
W |
See |
M |
See |
L |
See |
K |
See |
T |
See |
dir |
The directory where the "data" directory lives. Defaults to the current directory. |
matrixFile |
The path to the matrix file. If not specified it will look for it in the default spot. |
Returns a pointer to the allocated data. This should only be passed to
other functions with an lshData
parameter, such as eiQuery
Kevin Horan
1 2 3 4 5 6 7 | ## Not run:
lshData = loadLSHData(r,d)
eiQuery(r,d,refIddb,c("650002","650003"), format="name",K=15,lshData=lshData)
eiQuery(r,d,refIddb,c("650004","650005"), format="name",K=15,lshData=lshData)
freeLSHData(lshData)
## End(Not run)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.