Borrar filtros
Borrar filtros

Extracting elements from cell array of matrices

1 visualización (últimos 30 días)
Hau Kit Yong
Hau Kit Yong el 16 de Oct. de 2018
Comentada: madhan ravi el 16 de Oct. de 2018
Say I have a 101x101 cell array, where each element is a 3x3 matrix. How can I extract the (1,1) element of each of the 101x101 matrices in the cell array, to form a 101x101 matrix of values?
Edit: I've managed to extract the data using the line as follows:
arrayfun(@(x)x{:}(1,1),mycellarray)

Respuestas (1)

madhan ravi
madhan ravi el 16 de Oct. de 2018
Editada: madhan ravi el 16 de Oct. de 2018
matrix{1,1}
You can convert the whole matrix to matrix values as such :
cell2mat(matrix) %assuming matrix contains doubles

Categorías

Más información sobre Multidimensional Arrays en Help Center y File Exchange.

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by