Info

Cette question est clôturée. Rouvrir pour modifier ou répondre.

How to Create an Anonymous Function?

1 vue (au cours des 30 derniers jours)
William Tran
William Tran le 18 Oct 2020
Clôturé : MATLAB Answer Bot le 20 Août 2021
How do I enter ((-e^t) -1) / (1-e^t)) as an anonymous function?

Réponses (1)

Stephan
Stephan le 18 Oct 2020
Modifié(e) : Stephan le 18 Oct 2020
Try to write it in one line - i guess you use an older release of Matlab, that does not support the semicolon operator in a second line - also a closing bracket ist missing:
x_explicit = @(t,x) ((-exp(t)-1)./(1-exp(t)));
btw: your function does not use x - why is it input argument?
  2 commentaires
William Tran
William Tran le 18 Oct 2020
Yea, it was the closing bracket; thankyou
Stephan
Stephan le 18 Oct 2020
Did you notice that you can accept and/or vote for useful answers?

Community Treasure Hunt

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

Start Hunting!

Translated by