Why deplyoed executable file doesn't read *.MAT file ?
1 次查看(过去 30 天)
显示 更早的评论
I am working on classification using Neural Network tool.I've made a GUI which will take user given data attributes and classify it by the trained neural network and will show the perfect class of the product where does it belong.This GUI,who is taking some stored data by loading a *.mat file, is working great while running on Matlab but when I've deployed this GUI and a standalone exe file's been produced then it's become unable to read anything from the *.mat file but doing the rest activities fine (apart from reading the data from the .mat file). Please anybody knowing the remedy of that problem reply me.How I'll be able to make read that standalone executable file the data from that .MAT file ? Thank you.
0 个评论
采纳的回答
Azzi Abdelmalek
2013-3-28
编辑:Azzi Abdelmalek
2013-3-28
When you load tour mat file, did you use
load('yourmatfile') % This recognize the current folder in Matlab but not in your executable
You should use
load('yourfolder/yourmatfile')
4 个评论
Azzi Abdelmalek
2013-3-28
编辑:Azzi Abdelmalek
2013-3-28
No, I said
data=load('APPLICATION/data.mat')
not
load('APPLICATION/data.mat')
更多回答(0 个)
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Deep Learning Toolbox 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!