txt matriz leer fprintf extraer exportar datos archivos archivo arrays matlab file-io text-files

arrays - matriz - leer archivos txt en matlab



¿Cómo imprimir una matriz en un archivo.txt en Matlab? (1)

Lo siguiente debería hacer el truco:

fid = fopen(''c://coeffs.txt'',''wt''); % Note the ''wt'' for writing in text mode fprintf(fid,''%f/n'',a); % The format string is applied to each element of a fclose(fid);

Para obtener más información, consulte la documentación de FOPEN y FPRINTF .

Estoy empezando a aprender Matlab , por lo que esta pregunta podría ser muy básica:

Tengo una variable

a=[2.3 3.422 -6.121 9 4.55]

Quiero que los valores se envíen a un archivo .txt como este:

2.3 3.422 -6.121 9 4.55

¿Cómo puedo hacer esto?

fid = fopen(''c://coeffs.txt'',''w''); //this opens the file //now how to print ''a'' to the file??