To elaborate, I've determined that the wavefun.m is the function within the toolbox that generates the wavelet:
[out1,out2] = feval(fname,lb,ub,np,wname);
The 5 input arguments are defined earlier in the function as follows:
fname = morlet
lb = -8
ub = 8
np = 1024
wname = morl
However, I don't know how the feval command works to generate the 1024 wavelet coefficients, or how to modify it to increase the sigma value. The feval command is used to execute a function within another m-file, but the 5 arguments are all variables. There is no function called.
