How to loadmat file and run to my code in guide

2 ビュー (過去 30 日間)
Emir az
Emir az 2019 年 4 月 11 日
コメント済み: Jan 2019 年 4 月 17 日
Hi Guys-Iam new in Gui matlab - I want to Load .mat file and use it from some algorithms and my every algorihtm have have new form to change some parametrs
how can do this thanks for help
[fname fpath findex]=uigetfile({'*.mat'},'Select the Vessel Signal file','multiselect','on');
d = load(fname);
image.jpg

採用された回答

Jan
Jan 2019 年 4 月 11 日
編集済み: Jan 2019 年 4 月 11 日
[fname, fpath] = uigetfile({'*.mat'}, ...
'Select the Vessel Signal file','multiselect','on');
d = load(fullfile(fpath, fname));
The path might matter.
  2 件のコメント
Emir az
Emir az 2019 年 4 月 11 日
acctually i load .mat file but cant pass .mat file bettween GUI(load mfile from main form and pass to PSO and GA)
Jan
Jan 2019 年 4 月 12 日
@Emir az: I do not know, what "pass .mat file between GUI" means. What is the relation to "load mfile"? You do not load M-files manually. What is "main", "PSO" and "GA"?
Please search in the forum for "share data GUI". This might solve the problem. If not, please ask with more details. Post the current code and explain, at which lines what should be achieved. Take into account, that we cannot read your mind and your code remotely.

サインインしてコメントする。

その他の回答 (1 件)

Emir az
Emir az 2019 年 4 月 16 日
if true
actually i used uigetfile and upload some file but cant share uploaded data from uigetfile to run (cant send it to run )
end
  1 件のコメント
Jan
Jan 2019 年 4 月 17 日
I have no idea what "send it to run" means.

サインインしてコメントする。

カテゴリ

Help Center および File ExchangeMigrate GUIDE Apps についてさらに検索

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by