Reading a matrix from a .txt file

1 次查看(过去 30 天)
Good morning everyone. I'm trying to import in matlab a matrix from a text file. In my file, there are only two columns of values, separated by a single space. Here I report the first two rows of the file:
("Time Step" "Vertex Average X Velocity")
439 -0.1588049829006195
440 -0.157896234563214
I tried to import the matrix through
readmatrix('myfile.txt')
but I ony obtain
ans =
NaN
NaN
NaN
But if I put a comma between the two columns, Matlab reads the matrix correctly. Is there a way to import this matrix without putting commas between every column?
  4 个评论
Image Analyst
Image Analyst 2021-1-16
Ivs, put down in the Answers section so you can earn more points after Giovanni accepts your answer. You can't get any points for a comment up here.

请先登录,再进行评论。

采纳的回答

Ive J
Ive J 2021-1-17
Try this
myMat = readmatrix('myfile.txt', 'delimiter', ' ');

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Logical 的更多信息

标签

Community Treasure Hunt

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

Start Hunting!

Translated by