Reputation: 157
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
Reputation: 5672
You can use a wildcard in the extension:
[a,b]=uigetfile({'*.s*p'});
Upvotes: 1