My code runs as a m file but not as an exe. What to do?
2 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
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 Kommentare
Antworten (4)
Image Analyst
am 1 Apr. 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 Kommentare
Image Analyst
am 6 Apr. 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
am 1 Apr. 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 Kommentare
Steven Lord
am 3 Apr. 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.
Siehe auch
Kategorien
Mehr zu Image Data Workflows 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!