creating a matrix in matlab using a text file
15 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Nitish Reddy Kotkur
el 11 de Oct. de 2019
Editada: per isakson
el 21 de Oct. de 2019
type output.txt;
A = readmatrix('output.txt');
A
This is the output.txt file
[[1 2 2 0 0]
[2 1 0 0 2]
[2 0 1 2 0]
[0 0 2 0 4]
[0 2 0 4 0]]
A =
NaN 2 2 0 NaN
NaN 1 0 0 NaN
NaN 0 1 2 NaN
NaN 0 2 0 NaN
NaN 2 0 4 NaN
but when i passed it as a input to A the first and last rows are displaying NaN.can someone rectify it.
0 comentarios
Respuesta aceptada
per isakson
el 11 de Oct. de 2019
Editada: per isakson
el 11 de Oct. de 2019
It's the brackets, [], that confuses Matlab. Try
A = readmatrix( 'output.txt', 'Whitespace',' []' );
I have R2018b so I can't test it.
Your output.txt looks more like the right hand side of an assignment in an m-function. Try
A = [[1 2 2 0 0]
[2 1 0 0 2]
[2 0 1 2 0]
[0 0 2 0 4]
[0 2 0 4 0]]
in the command window (copy and paste).
3 comentarios
Jeremy Hughes
el 11 de Oct. de 2019
Editada: per isakson
el 21 de Oct. de 2019
Space ( char(32) ) is being used as the delimiter and [] are just being ignored.
I'd reccomend this for most cases where there are other characters since you don't have to specify what to omit.
A = readmatrix('output.txt','TrimNonNumeric',true);
Nitish Reddy Kotkur
el 20 de Oct. de 2019
Editada: per isakson
el 21 de Oct. de 2019
Más respuestas (0)
Ver también
Categorías
Más información sobre Call Python from MATLAB en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!