MATLAB: Help with suppressing the display of ‘ans’ !

functionsinputoutput

I don't want the output 'ans'. How could I fix it so that it doesn't display 'ans = 1.6929e+04'. I just want the temperatures, constants and the Enthalpy displayed. Thanks so much.

Best Answer

My guess is that you’re calling it without a semicolon after the function call.
See if this helps:
Ea = Arrhenius_Equation_Enthalpy;
You also need to specifically request an output from the function, or it will return the output to the default ‘ans’ variable.
Related Question