Save a string consisting of data to another directory
2 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
FG
el 23 de Sept. de 2020
Comentada: FG
el 23 de Sept. de 2020
I want to save a string consisting data to another directory..
c = sprintf('Power Factor=%.2f, PL=%g, FG=%g, Angle=%g, Nt=%g.mat', QM1, PL, FG, Ang_A, Nt);
How can I save c to the D:\Sim Results directory ?
0 comentarios
Respuesta aceptada
Ameer Hamza
el 23 de Sept. de 2020
Editada: Ameer Hamza
el 23 de Sept. de 2020
f = fopen('D:\Sim Results\filename.txt')
fprintf(f, 'Power Factor=%.2f, PL=%g, FG=%g, Angle=%g, Nt=%g.mat', QM1, PL, FG, Ang_A, Nt);
fclose(f);
Más respuestas (0)
Ver también
Categorías
Más información sobre Startup and Shutdown 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!