Info

此问题已关闭。 请重新打开它进行编辑或回答。

how I can plot ?

1 次查看(过去 30 天)
D tk
D tk 2020-11-16
关闭: MATLAB Answer Bot 2021-8-20
y=0.5*ln(pi*e), where e is exp^1
  1 个评论
James Tursa
James Tursa 2020-11-16
What is there to plot? Everything on the right hand side is a constant, so it is a single value:
>> y=0.5*log(pi*exp(1))
y =
1.0724

回答(1 个)

Walter Roberson
Walter Roberson 2020-11-16
x = linspace(0, 10);
y = 0.5*log(pi*exp(x));
plot(x, y)
  3 个评论
Walter Roberson
Walter Roberson 2020-11-16
It is an experimental feature in the online editor that some of us are testing out.
Mario Malic
Mario Malic 2020-11-16
Oh, I see.

此问题已关闭。

标签

Community Treasure Hunt

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

Start Hunting!

Translated by