function or functions of a single variable

32 visualizzazioni (ultimi 30 giorni)
  2 Commenti
Alejandro Peñuelas
Alejandro Peñuelas il 25 Mag 2020
Hi. Please in the future write explicitly what is your question and can also use the code tool for questions instead of pasting screenshots. By doing so, we can help you efficiently.
Alejandro Peñuelas
Alejandro Peñuelas il 25 Mag 2020
Friend, if one of the answers helped you, mark it as the accepted answer to help other users with issues like this.

Accedi per commentare.

Risposte (3)

Ameer Hamza
Ameer Hamza il 25 Mag 2020
You need to pass a function handle
fplot(@(x) -exp(-x)+x.^2+2*x+2, [0 1])
  1 Commento
Walter Roberson
Walter Roberson il 25 Mag 2020
In current releases, character vectors are still accepted, but in future that facility will go away.
The real problem was that e is not going to be recognized as the base of the natural logarithms, so e and x would both be considered to be variables.

Accedi per commentare.


Walter Roberson
Walter Roberson il 25 Mag 2020
Modificato: Walter Roberson il 25 Mag 2020
fplot('-exp(-x)+x.^2-2*x+2',[0 1])
As far as fplot() is concerned, e is just another variable, and not the base of the natural logarithms.

Alejandro Peñuelas
Alejandro Peñuelas il 25 Mag 2020
The problem you are not defining the function used in fplot as an expresion with an specific variable. You also are trying to use 'e' as the 'exp()' function.
Try something like this:
% Define x as the variable of the function with @(x)
fplot( @(x) -exp(-x + x.^2 - 2*x + 2), [0, 1]);
Maybe the function is not correct but you only have to change it according to your needs.
Hope this can help you. Bye.

Categorie

Scopri di più su Startup and Shutdown in Help Center e File Exchange

Prodotti

Community Treasure Hunt

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

Start Hunting!

Translated by