how can we use dynamic memory allocation in matlab?
3 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
In other words what would be the closest functions to "calloc", "malloc", "free" etc in matlab?
0 commentaires
Réponses (1)
Jan
le 29 Mar 2022
malloc and calloc is performed by:
a = zeros(1, 1e6)
A free is useful under rare conditions also (huge arrays, memory exhausted):
clear('a')
Voir également
Catégories
En savoir plus sur Get Started with 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!