Filter löschen
Filter löschen

convert a matrix with some zero to non zero txt file

1 Ansicht (letzte 30 Tage)
Jack Ie
Jack Ie am 4 Apr. 2016
Bearbeitet: Azzi Abdelmalek am 4 Apr. 2016
for example I have this matrix: [ 1 2 3 ; 1 0 0 ; 0 0 0; 4 5 6] I want to save it to a txt file: 1 2 3 1 4 5 6 (also delete zero rows completely.)

Akzeptierte Antwort

Azzi Abdelmalek
Azzi Abdelmalek am 4 Apr. 2016
Bearbeitet: Azzi Abdelmalek am 4 Apr. 2016
a=[ 1 2 3 ; 1 0 0 ; 0 0 0; 4 5 6] I
for k=1:size(a,1)
b=a(k,:)
b=b(b~=0);
dlmwrite('file1.txt',b,'-append')
end

Weitere Antworten (0)

Kategorien

Mehr zu Cell Arrays finden Sie in Help Center und File Exchange

Tags

Community Treasure Hunt

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

Start Hunting!

Translated by