Borrar filtros
Borrar filtros

In CERR: How to loop a function for several planC's

2 visualizaciones (últimos 30 días)
Hella Sand
Hella Sand el 23 de Dic. de 2023
Respondida: Sulaymon Eshkabilov el 23 de Dic. de 2023
I'm working with structuresets in CERR. I would like to repeat a function eg. 'getStructureDistance.m' for several structuresets (defined as planC's but renamed in the array-workspace in MatLab) in one go, but can't find out how to made a repeat-function to work. I suppose some kind of loop-sequence is the solution, but I don't know how. Could anybody help me?

Respuestas (1)

Sulaymon Eshkabilov
Sulaymon Eshkabilov el 23 de Dic. de 2023
If understood correctly, it can be attained something like this (presuming the fcn file getStructureDistance.m has some input vars):
N = ... % times to be executed
for ii= 1:N
[A{ii}, B{ii}, C{ii}]= getStructureDistance(Var1, Var2, Var3, Varn);
end
planC.A = A;
planC.B = B;
planC.C = C;

Categorías

Más información sobre MATLAB 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