% Script/Function Filename:
%     calculateSmallest.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:
%     Enter the variables that you use here
function [] = calculateSmallest( source , ~ )
n = round( get( source , 'Value' ) );
set( 1 , 'Name' , sprintf( ...
    'The smallest even number divisible by 7 and larger than %d is %d' , n , smallestNumber( n ) ) );
end