matrix with characters and numbers from text file

19 vues (au cours des 30 derniers jours)
polo Mahmoud
polo Mahmoud le 1 Nov 2019
Commenté : polo Mahmoud le 4 Nov 2019
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 commentaires
Bhaskar R
Bhaskar R le 1 Nov 2019
Modifié(e) : Bhaskar R le 1 Nov 2019
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 le 1 Nov 2019
Modifié(e) : polo Mahmoud le 1 Nov 2019
so i cant get the last matrix out anyway Bhaskar R ?

Connectez-vous pour commenter.

Réponses (1)

Mil Shastri
Mil Shastri le 1 Nov 2019
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 commentaire
polo Mahmoud
polo Mahmoud le 4 Nov 2019
it does not work for me, it says in the table NaN to all the "letters", but it can load the numbers.

Connectez-vous pour commenter.

Catégories

En savoir plus sur Data Type Conversion dans Help Center et File Exchange

Produits


Version

R2019a

Community Treasure Hunt

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

Start Hunting!

Translated by