Info
この質問は閉じられています。 編集または回答するには再度開いてください。
how I can plot ?
1 回表示 (過去 30 日間)
古いコメントを表示
y=0.5*ln(pi*e), where e is exp^1
1 件のコメント
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
2020 年 11 月 16 日
x = linspace(0, 10);
y = 0.5*log(pi*exp(x));
plot(x, y)
3 件のコメント
Walter Roberson
2020 年 11 月 16 日
It is an experimental feature in the online editor that some of us are testing out.
この質問は閉じられています。
参考
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!