-
Notifications
You must be signed in to change notification settings - Fork 31
/
Copy pathDownloadData.m
30 lines (24 loc) · 1017 Bytes
/
DownloadData.m
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
function DownloadData
% Copyright 2020 The MathWorks, Inc.
dataZip = tempname+".zip";
url = "https://www.mathworks.com/supportfiles/audio/AirCompressorDataset/AirCompressorDataset.zip";
dataFolder = getAirCompressorDataFolder();
disp("Checking for dataset...");
if ~isfolder(dataFolder) || numel(dir(dataFolder))<=2
answer = questdlg("Do you want to download the dataset now?","Dataset not found","Yes","No","Yes");
switch answer
case "Yes"
disp("Downloading Data...")
outFile = websave(dataZip, url);
disp("Data zip file saved as " + outFile);
zipdeleter = onCleanup(@()delete(outFile));
disp("Unzipping data file...");
unzip(dataZip, dataFolder);
disp("Data unzipped successfully.");
case "No"
disp("Dataset not downloaded. You will need to download the dataset to run the example. Please run DownloadData.")
end
else
disp("Dataset found.");
end
addpath("AirCompressorData");