필터 지우기
필터 지우기

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