How to convert a table into an array
200 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Vinay Killamsetty
el 2 de Oct. de 2019
Editada: Eugenio Grabovic
el 2 de Oct. de 2019
I have uploaded my table here.
I just want to convert this table into an array.
I tried command like table2array but i am getting an error
Brace indexing is not supported for variables of this type.
Error in table2array (line 27)
a = t{:,:};
Error in Verification_test (line 85)
ff=table2array(ff1);
0 comentarios
Respuesta aceptada
Eugenio Grabovic
el 2 de Oct. de 2019
Editada: Eugenio Grabovic
el 2 de Oct. de 2019
Zreal = Z_wires{:,1};
Zimg = Z_wires{:,2};
Zcomplex = Z_wires{:,3};
Z_wires_matrix = [Zreal, Zimg, Zcomplex]
or even just:
Z_wires_matrix = Z_wires{:,:};
0 comentarios
Más respuestas (1)
the cyclist
el 2 de Oct. de 2019
load 4layers_Z_wires.mat
table2array(Z_wires)
worked just fine for me.
0 comentarios
Ver también
Categorías
Más información sobre Matrices and Arrays 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!