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',' ')
  1 件のコメント
srycandy
srycandy 2011 年 7 月 19 日
tq very much..

サインインしてコメントする。

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeWorkspace Variables and MAT Files についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by