Effacer les filtres
Effacer les filtres

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

2 vues (au cours des 30 derniers jours)
Hella Sand
Hella Sand le 23 Déc 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?

Réponses (1)

Sulaymon Eshkabilov
Sulaymon Eshkabilov le 23 Déc 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;

Catégories

En savoir plus sur MATLAB dans Help Center et File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by