How to apply function with arguments to every cell in cell array

7 visualizaciones (últimos 30 días)
Hi,
I have a function called dfaedit which I want to run over each individual cell in a cell array called baskets_xyz_h_ref.
However, I am unsure how to apply a function to each cell if the function has multiple arguments..
How would I do this?
Thank you!

Respuesta aceptada

David Hill
David Hill el 28 de Feb. de 2022
for k=1:length(baskets_xyz_h_ref)
H(k)=dfaedit(baskets_xyz_h_ref{k},1,1,1);
end

Más respuestas (0)

Categorías

Más información sobre Data Types en Help Center y File Exchange.

Community Treasure Hunt

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

Start Hunting!

Translated by