How to create and empty matrix of a given size in a way that is compatible with codegen
Ältere Kommentare anzeigen
I have a function that is writing to an output matrix (y).
I can create y in the function using:
y = zeros(size(x));
x is a variable size large array and using zeros() is inefficient because it initializes the array with zeros that are then going to be overwritten.
I was wondering if there is a way to do this more efficiently?
I've tried a lot of the options I can find so far but none are compatible with codegen.
Thanks very much, as always,
John
2 Kommentare
KSSV
am 11 Mai 2022
You want to initialize and then do what?
John Edwards
am 11 Mai 2022
Akzeptierte Antwort
Weitere Antworten (0)
Kategorien
Mehr zu Function Definition finden Sie in Hilfe-Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!