%function y = ar_doubleplus(thisnum)

% USAGE:
% y = ar_doubleplus(thisnum)
%
% DESCRIPTION:
% Takes any input number, doubles it and adds three, and returns the result
%
% Author: Ashish Ranpura, Nov 2006 $
%

x = 3;
y = 2 * thisnum + x;
return
Error using ==> evalin
Undefined function or variable 'thisnum'.