How to load *.mat file from each directories in new script?

조회 수: 2 (최근 30일)
sam moor
sam moor 2017년 4월 20일
댓글: Andrew Newell 2017년 4월 23일
I have 15 directories and in each directories, I have minimum 8 sub-directories( varies in each directories). For each directory, I have .mat file that I have saved for future use. Now, I want to develop a new script which load .mat file in each directory? How do I load .mat file from each directory? The name of .mat file is same for each directory. Any idea is highly appreciated. Thank you
  댓글 수: 3
sam moor
sam moor 2017년 4월 21일
No I don't want to overwrite each .mat file rather load each .mat file from each directory and save each .mat file in matrix form
Andrew Newell
Andrew Newell 2017년 4월 21일
Fortunately, the code I provided below is compatible with that.

댓글을 달려면 로그인하십시오.

답변 (2개)

Image Analyst
Image Analyst 2017년 4월 22일
See attached demo. If you have R2016b or later, use that one, which has enhanced capabilities for dir() that mean you don't need to call genpath() anymore.
  댓글 수: 2
Andrew Newell
Andrew Newell 2017년 4월 22일
Fancy! Is this in the FEX?
Image Analyst
Image Analyst 2017년 4월 22일
No. Currently I have about 250 demo scripts. I just put the most "important" ones in my File Exchange. I'm afraid if I put up every little demo that the important ones might get lost in the larger group of them. Every once in a while I think of zipping them all up into something like a "grab bag of Image Processing Demos" and upload that, but I haven't yet.

댓글을 달려면 로그인하십시오.


Andrew Newell
Andrew Newell 2017년 4월 20일
Here is a solution that assumes there is one of these .mat files in every subdirectory of each of the 15 directories. Let's also assume that all 15 directories are all in the same directory, and fullrootdirectoryname is its name. Also, there are no other directories in that space. Then you can do the following to visit each directory and load the file:
C = strsplit(genpath(fullrootdirectoryname),':'); % Generate a list of folders
startingFolder = pwd;
for ii=1:length(C)
cd(C{ii})
load yourFilename.mat
end
cd(startingFolder)
The business with startingFolder makes sure you end up back where you started, and not in some unexpected place. If any of the above assumptions are not met, this code will need to be modified.
  댓글 수: 13
sam moor
sam moor 2017년 4월 23일
when I type which genpath -all it gives C:\Program Files\MATLAB\R2016a\toolbox\matlab\general\genpath.m
Andrew Newell
Andrew Newell 2017년 4월 23일
That also answers the question about the MATLAB version. So its output should be a string. Can you please show me the string?

댓글을 달려면 로그인하십시오.

카테고리

Help CenterFile Exchange에서 Search Path에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by