Borrar filtros
Borrar filtros

Info

La pregunta está cerrada. Vuélvala a abrir para editarla o responderla.

how I can plot ?

1 visualización (últimos 30 días)
D tk
D tk el 16 de Nov. de 2020
Cerrada: MATLAB Answer Bot el 20 de Ag. de 2021
y=0.5*ln(pi*e), where e is exp^1
  1 comentario
James Tursa
James Tursa el 16 de Nov. de 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

Respuestas (1)

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

La pregunta está cerrada.

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by