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 CenterFile Exchange에서 Migrate GUIDE Apps에 대해 자세히 알아보기

태그

Community Treasure Hunt

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

Start Hunting!

Translated by