How can I write log(e) in MATLAB?
이전 댓글 표시
I am trying to calculate x=log(e) but I can not. Any help?
댓글 수: 6
sultana saffi
2021년 4월 16일
x=log(e)
sultana saffi
2021년 4월 16일
how can i give this function
sultana saffi
2021년 4월 16일
I am trying to calculate x=log4(256) but i can not.Any help pleas?
sultana saffi
2021년 4월 16일
x=log4(256)
John D'Errico
2021년 4월 16일
Surely you can read the formula from that site?
f = @(x) 4.^x - 256;
log4_256 = fzero(f, 1.2345)
4^log4_256
채택된 답변
추가 답변 (0개)
카테고리
도움말 센터 및 File Exchange에서 Exponents and Logarithms에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!