jwen
jwen

Reputation: 157

MATLAB uigetfile file extension for Touchstone file

Currently have different touchstone file, .s4p, .s12p and such. Is there any general file extension for touchstone file in built-in MATLAB function uigetfile?

I tried:

[a,b]=uigetfile({*.SnP'});

[a,b]=uigetfile({*.sNp'}); 

[a,b]=uigetfile({*.snp'});

Upvotes: 0

Views: 121

Answers (1)

matlabgui
matlabgui

Reputation: 5672

You can use a wildcard in the extension:

[a,b]=uigetfile({'*.s*p'});

Upvotes: 1

Related Questions