matrix with characters and numbers from text file

조회 수: 19 (최근 30일)
polo Mahmoud
polo Mahmoud 2019년 11월 1일
댓글: polo Mahmoud 2019년 11월 4일
Hi, if I have a txt. file with 2 different matrix in the text. file and i want them to be read into matlab, eg:
this is from the txt. file:
% A =
[ 1 2 3 E
5 6 7 E]
% B =
[9 10 11 IX
13 14 15 IX]
and i want matlab to know the diffrent between these two element when it reads the file. so i can make them longer or shorter and it should still be able to take both matrix our with the characters and numbers
  댓글 수: 4
Bhaskar R
Bhaskar R 2019년 11월 1일
편집: Bhaskar R 2019년 11월 1일
It seems all matrices are extracted from the text file except last matrix
% connec
[1 2 1 2e11 A Ix
2 3 2 2e11 A Ix
3 4 3 2e11 A Ix
4 5 4 2e11 A Ix
5 6 5 2e11 A Ix];
It contained numerical with character data thats why it unable to perform
AAA = cell2mat(parts_value);
hence further statements you can't execute
In the cell variable parts_value you can get the all matrices correctly except last matrix as
parts_value{1}, parts_value{2}..parts_value{6}
polo Mahmoud
polo Mahmoud 2019년 11월 1일
편집: polo Mahmoud 2019년 11월 1일
so i cant get the last matrix out anyway Bhaskar R ?

댓글을 달려면 로그인하십시오.

답변 (1개)

Mil Shastri
Mil Shastri 2019년 11월 1일
You could use the import tool and even provide the url of the txt file (https://www.mathworks.com/matlabcentral/answers/uploaded_files/246014/coord2.txt)
You could then set the output type as a table/cell array/ whatever you like and then generate a script for it. You will notice that it eventually uses readtable with some options (not shown below)
% Import the data
coord21 = readtable("coord2.txt", opts);
  댓글 수: 1
polo Mahmoud
polo Mahmoud 2019년 11월 4일
it does not work for me, it says in the table NaN to all the "letters", but it can load the numbers.

댓글을 달려면 로그인하십시오.

카테고리

Help CenterFile Exchange에서 Data Type Conversion에 대해 자세히 알아보기

제품


릴리스

R2019a

Community Treasure Hunt

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

Start Hunting!

Translated by