How to loop through cell array and apply script to each double?
1 visualización (últimos 30 días)
Mostrar comentarios más antiguos
Hi,
I have a cell array of cell arrays of doubles called "C_512_numeric". I have the script called edit and I want to loop through all columns in the doubles in C_512_numeric and use the column data as input for edit (first argument). I have attached the script.
How would I write this code?
0 comentarios
Respuestas (1)
Aquatris
el 26 de Jul. de 2024
Editada: Aquatris
el 26 de Jul. de 2024
a = {1:3, 200:205, 10:12};
new_a = cellfun(@(x) myfun(x) ,a,'UniformOutput',false);
new_a{:}
function y = myfun(x)
y = x*(-2);
end
2 comentarios
Aquatris
el 29 de Jul. de 2024
The script is within the answer already. What exactly is the part you are struggling with?
Ver también
Categorías
Más información sobre Loops and Conditional Statements 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!