Define a custom for loop in MATLAB
5 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
Edoardo Cipriano
am 6 Aug. 2023
Beantwortet: Walter Roberson
am 6 Aug. 2023
Dear MATLAB Community,
Is there any way to define a custom for loop in MATLAB, similarly to what can be done in C language using macros?
For example, the nested loop foreach() can be defined as:
#define foreach() for (int i=0; i<N; i++) \
for (int j=0; j<N; j++)
without re-writing the double loop and the indexes every time.
Thank you for your help,
Edoardo
0 Kommentare
Akzeptierte Antwort
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu Loops and Conditional Statements finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!