Error in saving variable as txt file
1 Ansicht (letzte 30 Tage)
Ältere Kommentare anzeigen
I have a variable 'result' of size 170 rows and 1024 columns. I want to save this as txt file with each column separated by tab. Any ideas
path = 'E:\Data\fault\300';
s = what(path);
matfiles = s.mat;
l = numel(matfiles);
for a = 1:l
file = fullfile(path,char(matfiles(a)));
load(file);
result(:,a) = signal(1:1024);
end
save('300_faults.txt','result');
the text in the file appears to be not understandable
MATLAB 5.0 MAT-file, Platform: PCWIN64, Created on: Thu Mar 02 11:55:20 2017
xœ,Wy4Þ÷5TJdh@¨$Q!$⃣’±©(¤”1d™2Ï2{fÞ{<ó3ÏÓI„$c†D†Dƒ)•”äç»ÖïÞu×^÷®»Îçî{ÎÞ{hhhÄž1ÓìØÂ[ëø¿±ýÿ÷4Ûhhl·€vk>ÞÂ]ÿ;Ûº¯zf³ã^; ؽ…ž8Ä`¸„CÄb6„´ƒE¾\âð|š….t¶þ.N‰ødÀ+e”‚çùÎ5gJèa¤ûµÑgrànýŠOf1ôžÉ`ã'd¦càM¶p¼ñàïÍÝ~™¸]´œ?Ù-
åÇ6¶?Ô§â»;óÌ9xG~4~’)· Éçÿ$´gf¹nx$¿–IÛ>æ)mÏ€Kg«:·gÂñ%zÑY›`8G%ämrfâõ‡‹7*qá€@ºˆL9v Ý÷¶5>3–Ìð‚¡Êw–<ذ0Kª]Õz|©ø™|´ùáÓbèúy¹÷{x2Èt:ŒüöˆÂ÷KZ‰ÓWJ‘îA‹ö’q%–:²ûuÐ3¤ó[ù” Sã¨(ÍgX™ß¬—‚¸òc›ž+Uó‹ñè÷½e õ½nñak (oÐÿ6fH„NåU«Ašlìîzw5R†›/©ZÄJ”Ô‹0žyIÅWf‘ný¬Ñ("P”Z#œ
ŠIòí¹fTeçÕî"Ãß¶»GCõ’!—™!çBe
ð×r A¶Ñ†P´’2ÔÙ„=éfŠg^k£m!zÐ~nžöNÁo7]‡üW÷É;>ѯñ™˜
0 Kommentare
Akzeptierte Antwort
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu Workspace Variables and MAT Files finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!