when i was plotting i reveived this error, please help me out....

1 visualización (últimos 30 días)
SAI ARJUNKUMAR KADALI
SAI ARJUNKUMAR KADALI el 3 de Oct. de 2021
Respondida: Jan el 3 de Oct. de 2021
The following error was reported evaluating the function in FunctionLine update: Not enough input arguments.
fun = @(x) exp(-x) - 3.*x.^2 + 26
fplot(fun,[0 5])
grid on
  4 comentarios
Cris LaPierre
Cris LaPierre el 3 de Oct. de 2021
I can only recreate the error in MATLAB Online if I modify your code so that the fun does not use x in the equation. Otherwise your code works fine. Perhaps you use fplot somewhere else in your code. Have you shared all your code?
fun = @(x) exp - 3.^2 + 26;
fplot(fun,[0 5])
grid on
Warning: Error updating FunctionLine.

The following error was reported evaluating the function in FunctionLine update: Not enough input arguments.

Iniciar sesión para comentar.

Respuestas (1)

Jan
Jan el 3 de Oct. de 2021
For me it works:
fun = @(x) exp(-x) - 3.*x.^2 + 26
fun = function_handle with value:
@(x)exp(-x)-3.*x.^2+26
fplot(fun,[0 5])
grid on
So if this fails for you, you are running another code. maybe you have redefined exp()?

Categorías

Más información sobre Word games en Help Center y File Exchange.

Etiquetas

Productos

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by