% Script/Function Filename:
%     cylinderInfo.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:
%     height: {Enter the purpose of the variable here}
%     radius: {Enter the purpose of the variable here}
%     volume: {Enter the purpose of the variable here}
%     area  : {Enter the purpose of the variable here}
%     Enter the other variables that you use here}
function [ volume , area ] = cylinderInfo( height , radius )
% enter code/comments here
volume = 1 / 0; % replace this line
area = 1 / 0; % replace this line
end

function [ volume ] = calcVolume( height , radius )
% enter code/comments here
volume = 1 / 0; % replace this line
end

function [ area ] = calcSurfArea( height , radius )
% enter code/comments here
area = 1 / 0; % replace this line
end