No BSD License  

Highlights from
Inplace

from Inplace by David Gleich
Allows Matlab variables to be passed by reference instead of by value allowing inplace modification.

add_one_return(a)
function a = add_one_return(a)

a(1) = a(1) + 1;

Contact us at files@mathworks.com