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

1 次查看(过去 30 天)
The equation is e^(t-2)^1/2, for t=0.037.

回答(1 个)

madhan ravi
madhan ravi 2020-9-17
t = 0.037
exp(t-2)^1/2
Start with MATLAB On-ramp course.
  2 个评论
Benjamin Johnston
Benjamin Johnston 2020-9-17
e is supposed to represent eulers number, sorry about that
Walter Roberson
Walter Roberson 2020-9-18
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.

请先登录,再进行评论。

类别

Help CenterFile Exchange 中查找有关 Number Theory 的更多信息

Community Treasure Hunt

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

Start Hunting!

Translated by