How to select multiple elements from cell containing multiple double's
2 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Michiel
el 16 de Ag. de 2014
Comentada: Michiel
el 16 de Ag. de 2014
Hi,
I have a cell variable 'var' containg 19 [4x4 double] matrices. I want to select the first element (ie (1,1)) of every matrix in this cell. If you want to select an element from just one matrix it can be easily achieve using var{1}(1,1). However, if I want to select this element from all matrices, matlab gives an error. I've tried: - [var{:}(1,1)] which leads to error 'bad cell reference operation'.
Anyone have a solution? Btw, I know I can get it by writing a for loop, but surely there must be a more elegant way?
0 comentarios
Respuesta aceptada
Más respuestas (0)
Ver también
Categorías
Más información sobre Matrix Indexing 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!