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 CenterFile Exchange에서 Workspace 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