You create the below function in MATLAB and try to run it fr…
You create the below function in MATLAB and try to run it from the Script Editor (by hitting the “Run” button). You get an error message saying “Not enough input values”. What do you need to do to get it to actually run? function z = Lawnmower(x,t) z=1/2*x^2 – x*t + 1; end