how to find roots of equation having tan(x) or exp(x)
이전 댓글 표시
how to find roots of equation having tan(x) or exp(x)
I know how to calculate roots of polynomial having numerical values but i am stuck with it
채택된 답변
추가 답변 (3개)
Andrei Bobrov
2011년 10월 3일
fzero(@(x)exp(x)+x-10,0)
fzero(@(x)tan(x)-x-.01,0)
fzero(@(x)tan(x)-x-.01,pi)
moonman
2011년 10월 3일
0 개 추천
댓글 수: 1
Wayne King
2011년 10월 3일
then fzero will work as I suggested.
fzero(@(x) exp(x)+x-10,0)
says "Find the zeros of exp(x)+x-10 near 0
카테고리
도움말 센터 및 File Exchange에서 Calculus에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!