% Script/Function Filename:
%     smallest.m
% Purpose:
%     Enter the purpose of the function/file here
%     
% Record of modifications:
%     Programmer(s): {Your Name}
%     Date Due: YYYY-MM-DD
%     Date Submitted: YYYY-MM-DD
%     References: ????
%     Help Received: ????
%     
% Variables Used:
%     A: {Enter the purpose of the variable here}
%     B: {Enter the purpose of the variable here}
%     C: {Enter the purpose of the variable here}
%     smallestNumber: {Enter the purpose of the variable here}
%     Enter the other variables that you use here}
function [ smallestNumber ] = smallest( A , B , C )
% enter code/comments here
smallestNumber = ( A + B + C ) / 0; % replace this line
end