Using wildcard character in system command
4 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
I'm using 2012b Release & having problem with using wildcard symbol(*) with a system command.
eg:
>> [status ,out]=system('dir *.mat')
status =
1
out =
Directory of C:\Users\sample\Documents\MATLAB
File Not Found
Similarly the inbuilt matlab function has the same error
dir('*.mat')
'*.mat' not found.
However it works When the *. portion is removed
0 Commenti
Risposte (1)
Star Strider
il 7 Ago 2014
Both:
[status ,out]=system('dir *.mat')
and:
A = dir('*.mat')
work in R2014a. Without the ‘*.’ wildcard, it fails in both.
0 Commenti
Vedere anche
Categorie
Scopri di più su File Operations in Help Center e File Exchange
Prodotti
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!