Info
La pregunta está cerrada. Vuélvala a abrir para editarla o responderla.
i want to write in a file of matrix data of each element of row is seperated by commas and next row is in next line and also last element witout comma
2 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
for x = 1:12
for z = 1:128
for y = 1:256
fprintf(fileID,'%f',data(x,y,z));
fprintf(fileID,',');
end
end
fprintf(fileID,'\n');
end
2 comentarios
Walter Roberson
el 19 de Oct. de 2016
Editada: Walter Roberson
el 19 de Oct. de 2016
Have you ever considered the benefits of responding to people's questions about what you are trying to do, instead of creating a new Question? You now have two active Questions on exactly the same topic, and you are getting confused with someone else who seems to be asking the same thing.
Respuestas (0)
La pregunta está cerrada.
Ver también
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!