Extracting only some cell arrays from a cell- based on a double array

2 次查看(过去 30 天)
Dear all,
I have a 1*29 cell (C) containing tables. For example C{1,1} = 444*12 table.
From this 1*29 cell, I want to keep only selected arrays based on the a=[ 1 3 15 19 20 29] variable.
I want to have a final cell like the below:
NewC = {C{1, 1}, C{1,3}, C{1,15}, C{1,19}, C{1,20}, C{1,29}}
Since the real dataset is bigger, I want to know if there is any way to do this using cellfun or a loop.
Best regards.

采纳的回答

Jonas
Jonas 2022-7-19
编辑:Jonas 2022-7-19
something like this:
yourCell=cellstr(num2str((1:29)'))'
yourCell = 1×29 cell array
{' 1'} {' 2'} {' 3'} {' 4'} {' 5'} {' 6'} {' 7'} {' 8'} {' 9'} {'10'} {'11'} {'12'} {'13'} {'14'} {'15'} {'16'} {'17'} {'18'} {'19'} {'20'} {'21'} {'22'} {'23'} {'24'} {'25'} {'26'} {'27'} {'28'} {'29'}
someOfThemIdx=[ 1 3 15 19 20 29];
someOfThem=yourCell(someOfThemIdx)
someOfThem = 1×6 cell array
{' 1'} {' 3'} {'15'} {'19'} {'20'} {'29'}

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Logical 的更多信息

标签

产品


版本

R2021a

Community Treasure Hunt

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

Start Hunting!

Translated by