exporting complex data

6 vues (au cours des 30 derniers jours)
srycandy
srycandy le 19 Juil 2011
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

Réponse acceptée

Friedrich
Friedrich le 19 Juil 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',' ')
  1 commentaire
srycandy
srycandy le 19 Juil 2011
tq very much..

Connectez-vous pour commenter.

Plus de réponses (0)

Catégories

En savoir plus sur Workspace Variables and MAT Files dans Help Center et File Exchange

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by