incorrect reading of a txt file

4 visualizaciones (últimos 30 días)
Alberto Acri
Alberto Acri el 30 de En. de 2024
Respondida: Dyuman Joshi el 30 de En. de 2024
I have this .txt file that I have to read in Matlab. The first line is text and the second line onwards are numbers.
Using 'importdata' I do not get the desired result. How come?

Respuesta aceptada

Dyuman Joshi
Dyuman Joshi el 30 de En. de 2024
I am not sure what the expected output is supposed to be, but you can use readtable -
in = readtable('test.txt','DecimalSeparator',',')
Warning: Column headers from the file were modified to make them valid MATLAB identifiers before creating variable names for the table. The original column headers are saved in the VariableDescriptions property.
Set 'VariableNamingRule' to 'preserve' to use the original column headers as table variable names.
in = 3×9 table
numberDef A B C D E F GAr F_1 _________ _______ ______ _______ _ ______ _______ ______ ______ 5 -0.3935 0.3958 -0.0089 0 0.0135 -0.0017 0.0645 0.0645 12 -0.1664 0.2135 -0.0008 0 0.0002 -0.0001 0.0256 0.0256 15 -0.2771 0.2765 -0.0096 0 0.0035 -0.0009 0.0491 0.0491

Más respuestas (0)

Categorías

Más información sobre Startup and Shutdown en Help Center y File Exchange.

Productos


Versión

R2021b

Community Treasure Hunt

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

Start Hunting!

Translated by