Filter löschen
Filter löschen

How to use parfor to delete the first c elements of each cell of b?

2 Ansichten (letzte 30 Tage)
Chaoyang Jiang
Chaoyang Jiang am 15 Mai 2018
Kommentiert: Image Analyst am 15 Mai 2018
How to use parfor to delete the first c elements of cell b?
Error: The variable b in a parfor cannot be classified.
b=cell(1000,1);
c=randi(2,1000,1);
parfor m=1:1000
b{m,1}(1:c(m))=[];
end

Antworten (1)

Image Analyst
Image Analyst am 15 Mai 2018
Try this:
b=cell(1000,1); % Initialize to empty cells.
c = 10; % Whatever.
% Delete the first c cells
b(1:c) = [];
% Check that we have 9990 cells now.
whos b
  2 Kommentare
Chaoyang Jiang
Chaoyang Jiang am 15 Mai 2018
Thank you for your answer. I want to delete the first c elements of each cell of b. E.g,
b{1,1}=[1 3 4];
c(1)=2;
b{1,1}c(1)=[];
then b{1,1}={4}
Image Analyst
Image Analyst am 15 Mai 2018
Try this then:
% Create some random b
b = cell(10, 1);
for k = 1 : length(b)
b{k} = randi(99, 1, 5);
end
celldisp(b);
% Define c - it's random for each cell of b.
c = randi(4, length(b), 1)
% Use each c to delete that many elements from
% the corresponding cell of b
for k = 1 : length(b)
thisCell = b{k};
b{k} = thisCell(c(k)+1:end);
end
celldisp(b);
% or use cellfun().

Melden Sie sich an, um zu kommentieren.

Kategorien

Mehr zu Matrices and Arrays finden Sie in Help Center und File Exchange

Tags

Community Treasure Hunt

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

Start Hunting!

Translated by