Filter löschen
Filter löschen

Info

Diese Frage ist geschlossen. Öffnen Sie sie erneut, um sie zu bearbeiten oder zu beantworten.

how I can plot ?

1 Ansicht (letzte 30 Tage)
D tk
D tk am 16 Nov. 2020
Geschlossen: MATLAB Answer Bot am 20 Aug. 2021
y=0.5*ln(pi*e), where e is exp^1
  1 Kommentar
James Tursa
James Tursa am 16 Nov. 2020
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

Antworten (1)

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

Diese Frage ist geschlossen.

Tags

Community Treasure Hunt

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

Start Hunting!

Translated by