How to loadmat file and run to my code in guide

2 Ansichten (letzte 30 Tage)
Emir az
Emir az am 11 Apr. 2019
Kommentiert: Jan am 17 Apr. 2019
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

Akzeptierte Antwort

Jan
Jan am 11 Apr. 2019
Bearbeitet: Jan am 11 Apr. 2019
[fname, fpath] = uigetfile({'*.mat'}, ...
'Select the Vessel Signal file','multiselect','on');
d = load(fullfile(fpath, fname));
The path might matter.
  2 Kommentare
Emir az
Emir az am 11 Apr. 2019
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 am 12 Apr. 2019
@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.

Melden Sie sich an, um zu kommentieren.

Weitere Antworten (1)

Emir az
Emir az am 16 Apr. 2019
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

Kategorien

Mehr zu Migrate GUIDE Apps finden Sie in Help Center und File Exchange

Tags

Community Treasure Hunt

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

Start Hunting!

Translated by