Azzera filtri
Azzera filtri

how to increase the function numbers

1 visualizzazione (ultimi 30 giorni)
Arun Badigannavar
Arun Badigannavar il 5 Feb 2013
I have function called "editwin",,,now i want to increase the functions dynamically like"editwin1","editwin2","editwin3","editwin4","editwin5","editwin6",,only names should change dynamically
  1 Commento
Azzi Abdelmalek
Azzi Abdelmalek il 5 Feb 2013
If you have just one function, what is your goal in changing the name of this function?

Accedi per commentare.

Risposte (1)

Jan
Jan il 5 Feb 2013
No, please do not do this. Inserting an index in a name is always a bad idea.
Please explain what you actually want to achieve. Perhaps this helps, but usually the are better solutions:
for counter = 1:6
fcn = str2func(sprintf('editwin%d', counter))
feval(fcn) % for example
end

Categorie

Scopri di più su Creating and Concatenating Matrices in Help Center e File Exchange

Tag

Non è stata ancora inserito alcun tag.

Community Treasure Hunt

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

Start Hunting!

Translated by