MATLAB: Use ilaplace on a transfer function and set it as value of a text box.

ilaplacetransfer function

syms 's'
g = ilaplace(1/s^2);
set(handles.text9, 'String', num2str(g));

Best Answer

set(handles.text9, 'String', char(g));
Related Question