Toolbox는 다운 받았는데
적용이 안 되는 것 같은데 어떻게 불러오나요

function xdot = impulse_sdof(t, x)
% t: time
% x & xdot: state-space variables
%% parameters
m = 3; k = 2; c = 1;
%% force
f = 10*[l-stepfun(t-0.1)]; % unit step function
%% state-space equation
xdot(1) = x(2);
xdot(2) = -(k/m)*x(1)-(c/m)*x(2)+1/m*f;
xdot = [xdot(1);xdot(2)];
end

여기 stepfun 함수가 외부 함순데..