search for: here1

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

Did you mean: here
2009 Oct 08
2
how do I name data frames and files according to the index of a for loop?
...any data frames and .csv files that I can then manipulate. In order to do so, I would like to name the data frames and/or files by their respective index, to get: Data_frame_name1 Data_frame_name2 Data_frame_name3 ... Data_frame_name2858 I would also like to produce the .csv files: ~/file/goes/here1.csv ~/file/goes/here2.csv ~/file/goes/here3.csv ... ~/file/goes/here2858.csv I've been noodling over this for a while and have looked all over but I can't seem to get the syntax right. Any help at all would be appreciated. Thanks again! -Ken Ervin
2020 Sep 11
4
Garbage collection of seemingly PROTECTed pairlist
...hile (row_num <= nr) { Rprintf("row_num: %i\n", row_num); SEXP row = PROTECT(C_int_mat_nth_row_nrnc(int_mat_int, nr, 2, row_num)); Rf_PrintValue(prlst); // This is where the error occurs int *row_int = INTEGER(row); if (row_int[0] == last + 1) { Rprintf("here1"); SEXP next = PROTECT(Rf_list1(row)); prlst_tail = SETCDR(prlst_tail, next); last = row_int[1]; UNPROTECT(1); ++row_num; } else { Rprintf("here2"); SEXP next_car = PROTECT(C_make_len2_int_vec(last + 1, row_int[0] - 1)); SEXP next =...
2009 Apr 23
1
BLINDTRANSFER and SIP hardphones
...key, it seems BLINDTRANSFER remains empty. Though I can see a 302 MOVED TEMPORARILY message coming in. Is there a work around or something obvious I'm missing (it's the first time I'm playing with Dialplan transfert features. context mylocal { 7530 => { NoOp(Here1 ${BLINDTRANSFER}); Dial(SIP/7530,); NoOp(Here2 ${BLINDTRANSFER}); }; 7531 => { NoOp(Here3 ${BLINDTRANSFER}); Dial(SIP/7531); NoOp(Here4 ${BLINDTRANSFER}); }; }; Regards -------------- next p...
2020 Sep 12
0
Garbage collection of seemingly PROTECTed pairlist
...Rprintf("row_num: %i\n", row_num); > SEXP row = PROTECT(C_int_mat_nth_row_nrnc(int_mat_int, nr, 2, > row_num)); > Rf_PrintValue(prlst); // This is where the error occurs > int *row_int = INTEGER(row); > if (row_int[0] == last + 1) { > Rprintf("here1"); > SEXP next = PROTECT(Rf_list1(row)); > prlst_tail = SETCDR(prlst_tail, next); > last = row_int[1]; > UNPROTECT(1); > ++row_num; > } else { > Rprintf("here2"); > SEXP next_car = PROTECT(C_make_len2_int_vec(last...
2006 Apr 24
4
javascript in RoR page - Check ALL/uncheck ALL buttons
I am trying to implement a check all and uncheck all button for my check boxes. Here is what I have below. I am getting this error each time: Error: document.myform.add_visit_for_this_Pt has no properties Source File: http://localhost:3000/AddPatientVisit/addvisits Line: 1 Strange that I can''t seem to pass value into the function. Thanks for your help! <SCRIPT