exporting complex data

6 次查看(过去 30 天)
srycandy
srycandy 2011-7-19
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

采纳的回答

Friedrich
Friedrich 2011-7-19
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',' ')

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Structures 的更多信息

Community Treasure Hunt

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

Start Hunting!

Translated by