How can I make called my function stay in the memory so it can be efficiently run in loop?
1 Ansicht (letzte 30 Tage)
Ältere Kommentare anzeigen
Hello.
Let's say that I have a code which including for loop. In the loop, certain function is called at every round. How can I make it stay in the memory so code doesn't need to call it every time?
The function is complicated thus anonymous function is not suitable.
0 Kommentare
Antworten (1)
James Tursa
am 5 Nov. 2015
Bearbeitet: James Tursa
am 5 Nov. 2015
The first time you call a function it is parsed and put into memory. It will subsequently stay in memory unless you do something to clear it out of memory. You don't need to do anything special to get this to happen. E.g., see this:
0 Kommentare
Siehe auch
Kategorien
Mehr zu Get Started with MATLAB finden Sie in Help Center und File Exchange
Produkte
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!