Applying For Loop function to cell array

1 visualización (últimos 30 días)
Dan Banbury
Dan Banbury el 13 de Mzo. de 2017
Comentada: Abhishek Baba el 24 de Nov. de 2020
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 comentarios
Dan Banbury
Dan Banbury el 13 de Mzo. de 2017
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 el 24 de Nov. de 2020
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.

Iniciar sesión para comentar.

Respuestas (1)

Kushagr Gupta
Kushagr Gupta el 15 de Mzo. de 2017
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.

Categorías

Más información sobre Loops and Conditional Statements en Help Center y File Exchange.

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by