% Script/Function Filename:
%     ellipsoidInfo.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:
%     varargin  : {Enter the purpose of the variable here}
%     nargin    : {Enter the purpose of the variable here}
%     varargout : {Enter the purpose of the variable here}
%     nargout   : {Enter the purpose of the variable here}
%     Enter the other variables that you use here}
function [ varargout ] = ellipsoidInfo( varargin )
% enter code/comments here
for i = 1 : nargout
    varargout{ i } = 1 / 0; % replace this line
end
end