fprintf to create a file / precisions
1 visualización (últimos 30 días)
Mostrar comentarios más antiguos
Max Müller
el 25 de Jul. de 2014
Respondida: dpb
el 25 de Jul. de 2014
Hey Guys, this code is supposed to write Data into Test.dat-file.However, it doesn't work, cause signal is an Cell-Array containing strings.So can u pls help me and correct the code.
fprintf(fid,'%i\t%i\t%i\t%f\t%i\t%f\t%s\n',index,addr,amptotal0,amptotal,amp2,theta,signal)
And if u have some minuts.....the precisions... %f means float / %i menas integer but what does the t and the n mean ?
0 comentarios
Respuesta aceptada
dpb
el 25 de Jul. de 2014
A)
fmt='%i\t%i\t%i\t%f\t%i\t%f\t%s\n';
fprintf(fid,fmt,index,addr,amptotal0,amptotal,amp2,theta,char(signal))
B)
0 comentarios
Más respuestas (0)
Ver también
Categorías
Más información sobre C Matrix API en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!