How to write Output text file in Tabular format in matlab??

1 次查看(过去 30 天)
X contains 61 decimal integers like 0.0123 0.9876 and so on. Y contains 61 decimal integers like 0.0123 0.9876 and so on. Z contains 61 decimal integers like 0.0123 0.9876 and so on. I want an output text file containing 3 columns-X,Y and Z. Please help.

回答(1 个)

ANKUR KUMAR
ANKUR KUMAR 2018-10-1
I am taking a random data to give you an example.
A=rand(1,61);
B=rand(1,61);
C=rand(1,61);
AA=[A' B' C']
dlmwrite('test.txt',AA)
  8 个评论

请先登录,再进行评论。

标签

Community Treasure Hunt

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

Start Hunting!

Translated by