textread() for Importing Values into Multi-Column Matrices

3 Ansichten (letzte 30 Tage)
Christopher Cochran
Christopher Cochran am 1 Apr. 2020
Is there were a way to specify that the output of the textread function be saved into matrices with more than one column?
Yes:
[mat1(:,1), mat1(:,2), mat1(:,3), mat2, mat3(:,1), mat3(:,2), mat3(:,3), mat4] = textread('myfile.txt', %f %f %f %*s %*s %*s %f %f %f)

Antworten (1)

per isakson
per isakson am 1 Apr. 2020
Bearbeitet: per isakson am 1 Apr. 2020
"is there were a way to specify that the output of the textread" See textscan, 'CollectOutput', true
"Is this possible with textread()?"
  • Note: textread is not recommended. Use textscan instead.
  • Not as far as I know

Kategorien

Mehr zu Data Import and Export finden Sie in Help Center und File Exchange

Tags

Produkte


Version

R2017b

Community Treasure Hunt

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

Start Hunting!

Translated by