How to select all rows of a given column in a cell array

131 次查看(过去 30 天)
Hi guys! I m not able to select all values in a column of a cell array.
T= 3x1 cell where T{1}=mx6
I would select all rows in the 4th column.
Why this does not work?
T{1}{:,4}

采纳的回答

the cyclist
the cyclist 2021-6-18
编辑:the cyclist 2021-6-29
Your syntax:
T{1}{:,4}
would work if the contents of T{1} were also a cell array, since you would use the curly brackets to access it.
But that cell presumably just contains a regular numeric array, so you need
T{1}(:,4)
to access it, using parentheses instead of curly brackets.

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Matrices and Arrays 的更多信息

Community Treasure Hunt

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

Start Hunting!

Translated by