How to look at specific file in specific direction in MatLab? - dir -- MatLab

 How to look at specific file in specific direction in MatLab? - dir -- MatLab


 How to look at specific file in specific direction in MatLab?

[Ans]
dir

[syntax]
dir 
list current existing file in current path.

dir <name>
list=dir(<'name'>)
dir(<'name'>)

they are equivalent.
list current existing file under the folder which name is <name>.

more details on:

Comments

Popular posts from this blog

How to join a file path with multiple char vector or string in MatLab? - fullfile -- MatLab