Displaying 1 result from an estimated 1 matches for "n_lin".
Did you mean:
n_len
2004 Sep 12
0
write.table performance: an alternative?
...ty and wrapping it in some R code so as to make the function
invocation a bit more transparent and automatic?
Sincerely,
Carlos J. Gil Bellosta
///////////////////// Program Start /////////////////
#include <stdio.h>
#include <stdlib.h>
#include <stdarg.h>
void escribir(int* n_lin, char** tipo, int* n, ...){
int i, j;
va_list lista;
FILE* f = fopen("salidaPrueba", "w");
for(i = 0; i < *n_lin; i++){
char *pAchar = *tipo;
va_start(lista, *n);
for(j = 0; j < *n; j++){
if(*pAchar == 'd'...