Skip to content
Snippets Groups Projects
Verified Commit 4d0dd30b authored by leprob001's avatar leprob001
Browse files

feat: Added optional parameter to colorregister.create function

parent 5ca1094f
No related branches found
No related tags found
No related merge requests found
345 346
\ No newline at end of file \ No newline at end of file
function [colorRegister] = create() function [colorRegister] = create(pState)
%CREATE Summary of this function goes here %CREATE Creates a new color register for the soundsources.
% Detailed explanation goes here % Parameters:
% pState (optional): Cell of strings, containing the soundsource names that are
% already registered.
if nargin == 1
colorRegister = pState;
return;
end
colorRegister = {}; colorRegister = {};
end end
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment