function y=nu(t) y=0.*t; for k=1:1:length(t); if abs(t(k))<1 y(k)=exp(-1./(1-t(k).^2)); end end plot(t,y);