Applying For Loop function to cell array

조회 수: 2 (최근 30일)
Dan Banbury
Dan Banbury 2017년 3월 13일
댓글: Abhishek Baba 2020년 11월 24일
I have a 1x48 cell array and want to apply the following code to every cell, how can i go about doing this?
zerIdx=[];
for i=3840:length(File name)-6398 %3840 is 30 sec and 16638 is 130 sec
if ((File name(i)>0 && File name(i+1)<0))
zerIdx(end+1)=i; % save index of zero-crossing
end
end
New Name=STime(zerIdx); % display timepoints of zero-crossings
mean(diff(New Name))
  댓글 수: 3
Dan Banbury
Dan Banbury 2017년 3월 13일
The intention is that the cells will be "file name". Then new name will be a different variable that is produced from that function.
Abhishek Baba
Abhishek Baba 2020년 11월 24일
Hi Dan, it's kinda pretty late and a bit awkward too but did you get the answer to this thing?
I too am facing the same problem of applying 'for' loop in a cell. (I've applied a function to a subcell and I want to apply that same function to all the cells and subcells).
Any help will be much appreciated.
Thank you.

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

답변 (1개)

Kushagr Gupta
Kushagr Gupta 2017년 3월 15일
There are two ways to index into a cell array, using curly braces-{} and parentheses-().
Enclose indices in smooth parentheses, (), to refer to sets of cells--for example, to define a subset of the array. Enclose indices in curly braces, {}, to refer to the text, numbers, or other data within individual cells.
To read more about it, go through the documentation available at the " Access Data in Cell Array " link.

카테고리

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