Filter löschen
Filter löschen

Info

Diese Frage ist geschlossen. Öffnen Sie sie erneut, um sie zu bearbeiten oder zu beantworten.

Uigetfile does not open file selection box in standalone app

1 Ansicht (letzte 30 Tage)
Mert Karakaya
Mert Karakaya am 9 Jul. 2019
Geschlossen: Walter Roberson am 9 Jul. 2019
I have an app that I have designed, that works as a Matlab app. When I export it as a Standalone app, the file selection box from uigetfile does not open. The rest of the functionality (that does not depend on uigetfile) seems to be working fine. This is the code that is not working.
% Button pushed function: YButton
function YButtonPushed(app, event)
[fileY,pathY] = uigetfile({'*.txt','*.csv'});
global Y X;
Y = readmatrix([pathY,'\',fileY]);
if size(X,2)~=size(Y,2)
msgbox('Dataset X has different number of systems than dataset Y, \\ please double check your datasets.');
end
end
  2 Kommentare
Walter Roberson
Walter Roberson am 9 Jul. 2019
Which MATLAB version are you using? There was a problem like that in roughly R2016b timeframe I think it was.
Mert Karakaya
Mert Karakaya am 9 Jul. 2019
Bearbeitet: Mert Karakaya am 9 Jul. 2019
I am using R2019b. The issue is not only with uigetfile, but also with uiputfile and uiprogressdlg.

Akzeptierte Antwort

Mert Karakaya
Mert Karakaya am 9 Jul. 2019
The solution to this problem was using Matlab R2018a to compile instead of R2019b. It now works.

Weitere Antworten (0)

Diese Frage ist geschlossen.

Community Treasure Hunt

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

Start Hunting!

Translated by