My code runs as a m file but not as an exe. What to do?
1 vue (au cours des 30 derniers jours)
Afficher commentaires plus anciens
The code runs perfectly well in Matlab, however, when I compile an exe file and run that, it gives me the following error:
"subscript indices must either be real positive integers or logicals"
The code is as follows:
face=faceDetect();
dEye=eyeDistance(face);
[dh,dv,A]=mouthDistance(face);
dEyebrow=eyebrowDistance(face);
[f,n]=wrinkles(face);
x=[];
x(1,1)=dEye
x(1,2)=dEyebrow
x(1,3)=dh
x(1,4)=dv
x(1,5)=A
x(1,6)=f
x(1,7)=n
x=transpose(x);
load ('C:\xampp\htdocs\Test\Final\trained_net_3lm.mat');
dlmwrite('C:\xampp\htdocs\Test\testx.txt', x);
y=net(x); %*** HERE ***
dlmwrite('C:\xampp\htdocs\Test\test.txt', y);
The line marked HERE is the one throwing out the error.
Help would be really appreciated. :)
0 commentaires
Réponses (4)
Image Analyst
le 1 Avr 2017
I guess net is one of your arrays. So I'd guess that one of the elements of x is either zero, a negative number, or a fractional value. Type out x before you use it. See the FAQ on this extremely frequently asked question: http://matlab.wikia.com/wiki/FAQ#How_do_I_fix_the_error_.22Subscript_indices_must_either_be_real_positive_integers_or_logicals..22.3F
2 commentaires
Image Analyst
le 6 Avr 2017
Please add these lines before the net(x) line and tell us what you see in the console window:
for k = 1 : length(x)
fprintf('x(%d) = %f\n', k, x(k));
end
And please attach this file: 'C:\xampp\htdocs\Test\testx.txt' with the paper clip icon.
Steven Lord
le 1 Avr 2017
I suspect net is an object created using Neural Network Toolbox functions that you loaded from the MAT-file. If so realize that without some indication MATLAB Compiler can detect via static analysis of your code, it has no way of knowing that it needs to include the functionality from Neural Network Toolbox in your application. You'll need to use the %#function pragma to give it that hint. See in particular the documentation topic linked in Example 3 on that page.
I'd also consider calling load with an output argument rather than just "poofing" the variable into the workspace. Use something like:
mydata = load(...);
y = mydata.net(x);
3 commentaires
Steven Lord
le 3 Avr 2017
Attach the MAT-file C:\xampp\htdocs\Test\Final\trained_net_3lm.mat to this Answer so people can try it out. If that's not possible or you'd prefer not to do that, send the MAT-file along with this question to Technical Support.
Voir également
Catégories
En savoir plus sur Image Data Workflows dans Help Center et File Exchange
Produits
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!