Please, how to solve a log equation?
이전 댓글 표시
Please, someone can help me I solve an equation like this in the Matlab: 0.10==e^((-x*pi)/(sqrt((1-x^2))))?
Regards!
댓글 수: 1
David Young
2014년 3월 8일
Is there some reason why you need to solve it in MATLAB, presumably with the symbolic toolbox? Solving it on paper is faster, I think, and gives x = -0.5912 in a few lines.
답변 (2개)
Star Strider
2014년 3월 8일
I agree with David Young, but if you absolutely must solve it in MATLAB, here are two options:
Numerically:
f = @(x) 0.1 - (exp((-x.*pi) ./ sqrt(1 - x.^2)))
x = fzero(f, 0)
Symbolically:
syms x 'real'
g = 0.10 == exp((-x*pi)/(sqrt((1-x^2))))
fx = solve(g)
SAGAR OJHA
2021년 11월 27일
0 개 추천
e^2+5^3 -〖 log〗4
댓글 수: 4
SAGAR OJHA
2021년 11월 27일
Please solve
Walter Roberson
2021년 11월 27일
Solve what? There are no free variables in that expression. Not unless log is intended to be a variable or e is intended to be a variable instead of e
SAGAR OJHA
2021년 11월 27일
I have not have any matlab software.. so please help for this question
exp(2) + 5^3 - log(4)
I do not see anything to solve, though.
카테고리
도움말 센터 및 File Exchange에서 Numeric Solvers에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!