-
Notifications
You must be signed in to change notification settings - Fork 32
Documentation Template
Dave edited this page Mar 27, 2017
·
8 revisions
function output = FunctionName(arguments)
%FUNCTIONNAME - Function Summary
%
% Purpose: write purpose here
%
% Usage:
% output = FunctionName(core_arguments)
% output = FunctionName(core_arguments, optional_arguments)
%
% Inputs:
% coreArgumentX: explanation {possible values} (default: default_value)
%
% Inputs (Optional):
% optional_argument_x: explanation
%
% Outputs:
% output_x: explanation
%
% Examples:
% foo = FunctionName(hello_world)
%
% Submodules: X, Y, Z
%
% Author: John Smith, johnsmith@gmail.com, 1882
%
% See also: SimilarFunctions
%%Code%%
end