search for: n_columnas

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

Did you mean: columnas
2004 Sep 12
0
write.table performance: an alternative?
...rder 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_resultados);...