Skip to content

Commit 198ee3d

Browse files
committed
Modify CI
1 parent 34ae553 commit 198ee3d

File tree

6 files changed

+10
-2
lines changed

6 files changed

+10
-2
lines changed

Scripts/FilteringIntro.mlx

17 Bytes
Binary file not shown.

SoftwareTests/InitFiles/InitAnalogToDigitalConversion.m

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,8 @@
22
% ---- Known Issues -----
33
KnownIssuesID = "MATLAB:minrhs";
44
% ---- Pre-run commands -----
5-
5+
audioread = @(x) NewAudioRead();
6+
function varargout=NewAudioRead(varargin)
7+
load(fullfile(currentProject().RootFolder,"SoftwareTests\InitFiles\InitAnalogToDigitalConversion.mat"));
8+
varargout={JazzSignal,JazzSamplingFreq};
9+
end
54.1 MB
Binary file not shown.

SoftwareTests/InitFiles/InitFilteringIntro.m

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,8 @@
33
KnownIssuesID = "MATLAB:minrhs";
44
% ---- Pre-run commands -----
55
play = @(x) disp("Playing audio");
6-
6+
audioread = @(x) NewAudioRead();
7+
function varargout=NewAudioRead(varargin)
8+
load(fullfile(currentProject().RootFolder,"SoftwareTests\InitFiles\InitFilteringIntro.mat"));
9+
varargout={Signal,SamplingFrequency};
10+
end
4.99 MB
Binary file not shown.
9 Bytes
Binary file not shown.

0 commit comments

Comments
 (0)