Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
私の質問には、フォルダーにマット形式の画像が含まれています。これらのマットファイルを for ループを使用して読み取るにはどうすればよいですか???
これを試して。
folder = 'C:/foobar/'; files = dir([folder '*.mat'); for i = 1:numel(files) load(files(i).name; end