12 lines
242 B
Matlab
12 lines
242 B
Matlab
function display(a)
|
|
% DISPLAY Display the equation of the input function on the terminal.
|
|
% display(a)
|
|
% :param a:
|
|
% Instance of class :mat:func:`Func`
|
|
%
|
|
|
|
disp(' ');
|
|
disp([inputname(1),' = '])
|
|
disp(' ');
|
|
disp([' ' char(a)])
|
|
disp(' ');
|