Filter löschen
Filter löschen

Info

Diese Frage ist geschlossen. Öffnen Sie sie erneut, um sie zu bearbeiten oder zu beantworten.

How I can read notbad file Line by Line?

1 Ansicht (letzte 30 Tage)
Ameligege
Ameligege am 28 Mär. 2015
Geschlossen: MATLAB Answer Bot am 20 Aug. 2021
I saved matrices in text file line by line and now I want to read these matrices in same way that I saved?
  2 Kommentare
Geoff Hayes
Geoff Hayes am 28 Mär. 2015
Ameligege - what is the code that you used to save the data to file?
Ameligege
Ameligege am 28 Mär. 2015
dlmwrite('Features.txt',reshapemat,'-append', 'newline', 'pc');

Antworten (1)

Image Analyst
Image Analyst am 28 Mär. 2015
Try dlmread(), csvread(), importdata(), fgetl(), textscan(), or readtable(). Lots of ways to do it. Examples are in the help. Just pick one or two and give it a try. In the event someone did want to do it for you, you didn't attach your file, so they can't.
  19 Kommentare
Image Analyst
Image Analyst am 29 Mär. 2015
Bearbeitet: Image Analyst am 29 Mär. 2015
Here is the code I used:
s=load('myarray.mat')
m = s.reshapemat;
Then examine m with the variable editor. And you attached the same features.txt as before. It totally does not match your reshapemat in the slightest.
Ameligege
Ameligege am 29 Mär. 2015
Look :( I had to use this function reshapemat=reshape(features, 1, []);
to save the result matrix in one line.
because I want to save each matrix in one line like the notbad that I sent
If you have another way to do the same thing ,please tell me?
Thank you for the sincere help ,I appreciate you for your time and your effort

Diese Frage ist geschlossen.

Community Treasure Hunt

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

Start Hunting!

Translated by