search for: rresult

Displaying 5 results from an estimated 5 matches for "rresult".

Did you mean: result
2007 Jun 06
1
correspondence analysis
...14 20 6 12 14 14 17 23 20 19 18 21 18 19 18 I found the function corresp() in the package MASS, but the results are different from the output in SPSS. Also, I don't understand the coordinates; in the biplot I cannot find a -2 limit for example from the first product on any of the x axes. > Rresult <- corresp(mytable, nf=2) > Rresult First canonical correlation(s): 0.20823373 0.04840434 Row scores: [,1] [,2] 1 -2.0838424 0.01237391 2 0.4901559 1.51190922 3 0.4463375 -0.72631884 4 0.4946202 -0.87620237 Column scores: [,1] [,2] 1 -0.29870621 -0.32...
2013 Nov 01
2
computation of hessian matrix
below is a code to compute hessian matrix , which i need to generate 29 number of different matrices for example first element in x1 and x2 is use to generate let say matrix (M1) and second element in x1 and x2 give matrix (M2) upto  matrix (M29) corresponding to the total number of observations and b1 and b2 are constant.  can some one guide me or help to implement this please. I did not
2019 Jan 12
2
Solr -> Xapian ?
...structure: I am trying: I_ARRAY_INIT(&(RESULT->DEFINITE_UIDS),R->SIZE); I_ARRAY_INIT(&(RESULT->MAYBE_UIDS),0); uint32_t uid; for(i=0;i<r->size;i++) { try { uid=atol(backend->dbr->get_document(r->data[i]).get_value(1).c_str()); i_warning("Rresult UID=%d",uid); ARRAY_IDX_SET(&(RESULT->DEFINITE_UIDS),I,&UID); } catch(Xapian::Error e) { i_warning(e.get_msg().c_str()); } } I can see in hte log that UID are properly found on Xapian database, but no results are transmitted to dovecot and to the imap clien...
2019 Jan 13
0
Solr -> Xapian ?
...; I_ARRAY_INIT(&(RESULT->DEFINITE_UIDS),R->SIZE); > I_ARRAY_INIT(&(RESULT->MAYBE_UIDS),0); > > uint32_t uid; > for(i=0;i<r->size;i++) > { > try > { > uid=atol(backend->dbr->get_document(r->data[i]).get_value(1).c_str()); > i_warning("Rresult UID=%d",uid); > ARRAY_IDX_SET(&(RESULT->DEFINITE_UIDS),I,&UID); > } > catch(Xapian::Error e) > { > i_warning(e.get_msg().c_str()); > } > } > > I can see in hte log that UID are properly found on Xapian database, but no results are transmitted to dovecot...
2019 Jan 12
2
Solr -> Xapian ?
THank you Now, for the results I see the member of fts_result is : ARRAY_TYPE(seq_range) definite_uids; I have the UID as a aray of uint32_t * How to put my UIDs into this "definite_uids" ? Obviously this is not a simple array/pointer. How to say someting similar to result->definite_uids[1]=my_uid ? On 2019-01-12 10:25, Timo Sirainen wrote: > On 11 Jan 2019, at 21.23,