function output = function_template(input) % function output = function_template(input) % Brief description of what the function does. % Here, the function returns values that match % the value(s) of the input argument(s). % The parameter names "input" and output" are just used % within the function, and all the variables calculated % internally that are not part of the input list or % output list are cleared after the function is executed. % Every commented line until the first blank line is % reproduced if you type the following line % help function_template % Input parameters % input = input parameters % Output parameters % output = input parameters % Examples % input = 1; % output = function_template(input) % a = function_template(1) % q = function_template([1, 2, 3]) % Your name (e.g., Steve Martel) % Date (e.g., 8_26_04) % Annotated description of function % For example, here the output = input output = input;