Subscripting into an mxArray is not supported for code generation - I think it's the colon that's the issue
2 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
This part of my code
V = zeros(n,m+1);
V(:,1) = (1/beta)*w;
is giving me an error "Subscripting into an mxArray is not supported for code generation", when I use MATLAB Coder to create a Mex file. But if I can't fill V that way and so forth what is the correct way to do it? Other places I get "Unexpected MATLAB operator" and the MATLAB Coder points me to the ":"
0 Kommentare
Antworten (1)
James Tursa
am 14 Dez. 2016
What happens if you use explicit indexes?
V(1:n,1) = (1/beta)*w;
2 Kommentare
Siehe auch
Kategorien
Mehr zu MATLAB Coder 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!