I don't know how to type this in matlab.

1 view (last 30 days)
The equation is e^(t-2)^1/2, for t=0.037.

Answers (1)

madhan ravi
madhan ravi on 17 Sep 2020
t = 0.037
exp(t-2)^1/2
Start with MATLAB On-ramp course.
  2 Comments
Benjamin Johnston
Benjamin Johnston on 17 Sep 2020
e is supposed to represent eulers number, sorry about that
Walter Roberson
Walter Roberson on 18 Sep 2020
e = exp(1);
sqrt(e.^(t-2))
%or
e.^sqrt(t-2)
However, 2.718<etc>^expression is more accurately calculated as exp(expression) like madhan showed.

Sign in to comment.

Community Treasure Hunt

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

Start Hunting!