how to save digital output

a=[ 1 0 1 0 1 1 0 0 1 1 0];
save a_out.txt -ascii a
1.0000000e+00 0.0000000e+00 1.0000000e+00 0.0000000e+00 1.0000000e+00 1.0000000e+00 0.0000000e+00 0.0000000e+00 1.0000000e+00 1.0000000e+00 0.0000000e+00
is there a way to save it as
1 0 1 0 1 1 0 0 1 1 0? as digital output so I can feed it into simualtor?

Réponses (2)

Akira Agata
Akira Agata le 28 Nov 2019

0 votes

How about using writematrix function?
writematrix(a,'a_out.txt','Delimiter',' ');

1 commentaire

Walter Roberson
Walter Roberson le 28 Nov 2019
Note that writematrix() needs R2019b or later.

Connectez-vous pour commenter.

Catégories

Community Treasure Hunt

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

Start Hunting!

Translated by