how to plot a function handle on matlab 7 ?

13 visualizaciones (últimos 30 días)
HeadingUpHigh
HeadingUpHigh el 20 de Abr. de 2018
Comentada: Star Strider el 21 de Abr. de 2018
my code is i'm asking the user to input a funtion and i transform it to a handle one (note that i'm using the matlab 7.0 R14) :
funstr = input('• Please enter your function here : ', 's');
f = eval( ['@(x) ' funstr ] );
how can i possibly do the plot of this between the two points a and b? i keep getting errors
??? Index exceeds matrix dimensions
or
??? Error using ==> plot Conversion to double from function_handle is not possible.
i tried it with plot and fplot and none of them is working !
thanks for helping in advance.

Respuesta aceptada

Star Strider
Star Strider el 20 de Abr. de 2018

You need to evaluate the function in the plot call.

Example

fun = @(x) x.^3 - 8*x.^2 + 10;
x = linspace(-5, 5);
figure
plot(x, fun(x))
grid
  6 comentarios
HeadingUpHigh
HeadingUpHigh el 21 de Abr. de 2018
thanks mate, you've been very helpful.
Star Strider
Star Strider el 21 de Abr. de 2018
As always, my pleasure.
The File Exchange has several functions that add necessary capabilities missing in earlier MATLAB versions. (Many of these have been incorporated in MATLAB and the Toolboxes since.)

Iniciar sesión para comentar.

Más respuestas (0)

Categorías

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

Community Treasure Hunt

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

Start Hunting!

Translated by