MATLAB: Issue in importing Hlp from workspace

mathworks

I am working on filter design .i designed the filter using the filterBuilder and was done successfully and want to apply it on a signal.The designed filter is stored in workspace as Hlp but I am unable to use that in my script.
Please advise me something.
Thank you

Best Answer

You may use filter command to use Hlp object, where x is the input data.
y = filter(Hlp,x);
You may refer the following documentation for more details.