필터 지우기
필터 지우기

Info

이 질문은 마감되었습니다. 편집하거나 답변을 올리려면 질문을 다시 여십시오.

Why my graph is not corelating with my calculations

조회 수: 1 (최근 30일)
moonman
moonman 2011년 10월 3일
마감: MATLAB Answer Bot 2021년 8월 20일
my equation is
exp(x)-(x+1)/(x-1)
Once i plot it with
> x=0:.01:3;
>> y=exp(x)-(x+1)/(x-1);
>> plot(x,y)
I get strange graph
For example at x=0 the equation says that y=2
but plot is showing close to -.5
why it is so??

답변 (2개)

Daniel Shub
Daniel Shub 2011년 10월 3일
There is a difference between "/" and "./". You want ./
y=exp(x)-(x+1)./(x-1);

moonman
moonman 2011년 10월 3일
Ok thanks daniel
I have calculated one root of this equation as
-1.5433
Is it correct answer can u check through matlab

이 질문은 마감되었습니다.

태그

Community Treasure Hunt

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

Start Hunting!

Translated by