search for: l_fila

Displaying 1 result from an estimated 1 matches for "l_fila".

Did you mean: fila
2004 Sep 12
0
write.table performance: an alternative?
...rs only, in order to avoid the internal transformation into character values (both write.table and write.matrix seem to be doing it), compiling ////////////////////////// Program Start ////////////////////////// #include <stdio.h> #include <stdlib.h> void salidaOptimizada(int* l_fila, int* n_columnas, double* vector_resultados){ int i; int j; FILE* f = fopen("datosPorPeriodo.dat", "w"); for(i=0; i < *n_columnas; i++){ for(j=0; j < *l_fila; j++){ fprintf(f, " %3f", *vector_r...