Filter löschen
Filter löschen

Info

Diese Frage ist geschlossen. Öffnen Sie sie erneut, um sie zu bearbeiten oder zu beantworten.

Creating an array by repeating the index of a cell by the length of the cell

2 Ansichten (letzte 30 Tage)
Ryan Waite
Ryan Waite am 27 Apr. 2017
Geschlossen: MATLAB Answer Bot am 20 Aug. 2021
I have a cell array of data shown below. I would like to create a new array (output) where the index of the cell is repeated "x" times. Where "x" is equal to the length of that specific cell. I can do this with for loops, but can it be done with a simple function?
data = {[1,2,3], [4,5], [6], [7,8,9,10]}
% output = [1,1,1,2,2,3,4,4,4,4]

Antworten (1)

John Malik
John Malik am 28 Apr. 2017
repelem(1:length(data), cellfun(@length, data))

Diese Frage ist geschlossen.

Produkte

Community Treasure Hunt

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

Start Hunting!

Translated by