exporting complex data
6 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Hello.. I have one question.. how to export complex data from .mat file to .txt file.. I hv used the fprintf function... however the function doesnt support the complex data i.e the entries of matrix in txt file are only real number .. tq
0 comentarios
Respuesta aceptada
Friedrich
el 19 de Jul. de 2011
Hi,
try this:
a = rand(10) + rand(10)*i;
dlmwrite('text.txt',a)
Or if you want a whitespace instead of a comma do
dlmwrite('text.txt',a,'delimiter',' ')
Más respuestas (0)
Ver también
Categorías
Más información sobre Workspace Variables and MAT Files 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!