Why deplyoed executable file doesn't read *.MAT file ?

2 ビュー (過去 30 日間)
JIT
JIT 2013 年 3 月 28 日
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.

採用された回答

Azzi Abdelmalek
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 件のコメント
JIT
JIT 2013 年 3 月 28 日
Yes I tried this but after deploy that exe is still unable to read the MAT file.I've used, load('APPLICATION/data.mat'); where data.mat is in the folder named 'APPLICATION' and the .m file does also belong there.
Azzi Abdelmalek
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 ExchangeDeep Learning Toolbox についてさらに検索

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by