Not enough input arguments
Mostrar comentarios más antiguos
The live script is attached, but the code is as follows:
fplot(f,[-1 4])
grid on
title('y=x^3-4*x^2+2*x-4')
xlabel('x');
ylabel('y');
hold on
f(3)-f(5)
Differentiation=diff(y, x)
Integtgral=integral(f,-1,4)
function y=f(x)
y=x^3-4*x^2+2*x-4
end
How do I fix the "not enough input arguments" error and also how do I get the integral to work?
Respuesta aceptada
Más respuestas (0)
Categorías
Más información sobre Creating, Deleting, and Querying Graphics Objects en Centro de ayuda y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!