필터 지우기
필터 지우기

How can I loop all elements in a matrix from a cell array

조회 수: 3 (최근 30일)
BoIs
BoIs 2016년 11월 3일
편집: BoIs 2016년 11월 5일
I have a cell array where the cells are something like this: [ 92x1 double] [215x1 double] [127x1 double] [120x1 double] [ 89x1 double] ....and so on(1000 odd cells). I want to be able to extract the first n and last n elements in each of those arrays and get their means. I want all of that in one loop. I tried using a 'for' loop for this but it only gets the required elements from either the first or the last cell array and not all the cells. Im quite new to this and any help would be great! Thanks
if true
% code
end
for i=1:nfiles,
a{i} = diff(w{i}(:,2))./diff(w{i}(:,1));
for k=1:numel(a{i}),
begin_el= a{i}(1:5),
e_elements = a{i}(end-4:end),
end
end

채택된 답변

dbmn
dbmn 2016년 11월 3일
One suggestion is to use the running variable k in the loop
begin_el(end, :)= a{k}(1:5),
e_elements(end, :) = a{k}(end-4:end)
another suggestion would be to use a cellfun instead of the for loop.
  댓글 수: 1
BoIs
BoIs 2016년 11월 4일
편집: BoIs 2016년 11월 5일
Thanks for the suggestion!
I tried cellfun and it worked perfectly

댓글을 달려면 로그인하십시오.

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Loops and Conditional Statements에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by