a question about function -- uigetfile()

13 vues (au cours des 30 derniers jours)
vx2008
vx2008 le 5 Jan 2014
Modifié(e) : Stephen23 le 7 Déc 2015
the code
[FileName PathName]=uigetfile(('*.xlsx'), 'Choose a File');
runs Ok; but the code
[FileName PathName]=uigetfile(('*.xlsx','Excel Files(*.xlsx)'; '*.txt','Txt Files(*.txt)'), 'Choose a File');
runs wrongly. why? how should I modify it?

Réponse acceptée

Adriano Bittar
Adriano Bittar le 6 Juin 2014
Modifié(e) : Stephen23 le 7 Déc 2015
Hi.. Try this code:
[filename, pathname] = uigetfile({'*.xlsx','Excel Files(*.xlsx)'; '*.txt','Txt Files(*.txt)'}, 'Pick a file');
I think it's only missing the {};

Plus de réponses (0)

Catégories

En savoir plus sur Dialog Boxes dans Help Center et File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by