File tree Expand file tree Collapse file tree 2 files changed +12
-4
lines changed Expand file tree Collapse file tree 2 files changed +12
-4
lines changed Original file line number Diff line number Diff line change 22% ---- Known Issues -----
33KnownIssuesID = " MATLAB:minrhs" ;
44% ---- Pre-run commands -----
5- audioread = @(x ) NewAudioRead();
6- audioplayer = @(x ) disp(" Create audio player" );
75play = @(x ) disp(" Playing audio" );
86stop = @(x ) disp(" Stop audio player" );
7+ audioread = @(x ) NewAudioRead(x );
8+ audioplayer = @(x ,y ) NewAudioPlayer(x ,y );
99function varargout = NewAudioRead(varargin )
1010load(fullfile(currentProject().RootFolder," SoftwareTests\InitFiles\InitAnalogToDigitalConversion.mat" ));
1111varargout = {JazzSignal ,JazzSamplingFreq };
12+ end
13+ function varargout = NewAudioPlayer(varargin )
14+ disp(" Create audio player" )
15+ varargout = {1 };
1216end
Original file line number Diff line number Diff line change 22% ---- Known Issues -----
33KnownIssuesID = " MATLAB:minrhs" ;
44% ---- Pre-run commands -----
5- audioplayer = @(x ) disp(" Create audio player" );
65play = @(x ) disp(" Playing audio" );
76stop = @(x ) disp(" Stop audio player" );
8- audioread = @(x ) NewAudioRead();
7+ audioread = @(x ) NewAudioRead(x );
8+ audioplayer = @(x ,y ) NewAudioPlayer(x ,y );
99function varargout = NewAudioRead(varargin )
1010load(fullfile(currentProject().RootFolder," SoftwareTests\InitFiles\InitFilteringIntro.mat" ));
1111varargout = {Signal ,SamplingFrequency };
1212end
13+ function varargout = NewAudioPlayer(varargin )
14+ disp(" Create audio player" )
15+ varargout = {1 };
16+ end
You can’t perform that action at this time.
0 commit comments