Skip to content

Commit 4b6ab3c

Browse files
authored
Add files via upload
1 parent 431dc29 commit 4b6ab3c

File tree

1 file changed

+18
-0
lines changed

1 file changed

+18
-0
lines changed

+librosa/+utils/StringWriter.m

+18
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
classdef StringWriter
2+
% STRINGWRITER Local class used to bypass MATLAB code generation when it is
3+
% not requested
4+
5+
% Copyright 2022 The MathWorks, Inc.
6+
7+
methods
8+
9+
function addcr(~,varargin)
10+
11+
end
12+
13+
function val = char(~)
14+
val = '';
15+
end
16+
17+
end
18+
end

0 commit comments

Comments
 (0)