Using cellfun to extract specific rows from a cell array?
Show older comments
Hello,
I have a 1x6 cell array, 'Peaks':
Peaks = {199x4500} {192x4500} {167x4500} {171x1950} {157x1500} {191x1500}
I would like to create a new cell array, 'New_Peaks' using only 16 rows from each cell. The row numbers I want to choose are are in a 16X6 double array, 'Indices'.
Indices =
2 1 1 1 4 1
16 23 7 72 133 24
44 30 19 15 13 63
41 15 28 9 18 58
35 26 31 3 15 4
8 49 39 19 53 32
11 72 40 96 29 64
14 39 55 73 111 84
153 33 57 129 12 71
70 116 63 92 75 60
144 104 95 94 68 83
137 137 97 108 77 74
91 155 107 140 120 97
36 40 119 49 144 56
80 64 127 105 43 59
160 94 145 66 149 49
I tried the following line:
New_peaks = cellfun(@(x) x(Indices), all_peaks, 'UniformOutput', false)
But the output is a 1x6 cell array consisting of 16x6 doubles.
The output I want is:
New_peaks = {16x4500} {16x4500} {16x4500} {16x1950} {16x1500} {16x1500}
Is cellfun able to extract the contents of a cell array in this way?
3 Comments
the cyclist
on 22 Dec 2021
Can you upload the data, using the paperclip icon in the INSERT section of the toolbar? That makes it easier to see if code we try gives what you want.
omidm
on 22 Dec 2021
the cyclist
on 23 Dec 2021
Separate piece of advice: Don't name a variable "peaks", which shadows the name of a function. That can cause issues and confusion.
Accepted Answer
More Answers (0)
Categories
Find more on Structures in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!