Code covered by the BSD License  

Highlights from
TP Tool

from TP Tool by P. Baranyi, Z. Petres, Sz. Nagy
MATLAB Toolbox providing the functions for TP Model Transformation based Control Design

sinc(x)
function y = sinc(x)
if x==0
	y = 1;
else
	y = sin(pi*x)/(pi*x);
end

Contact us at files@mathworks.com