How can I write log(e) in MATLAB?

조회 수: 96 (최근 30일)
Melika Qahqaie
Melika Qahqaie 2018년 4월 15일
댓글: Walter Roberson 2021년 4월 16일
I am trying to calculate x=log(e) but I can not. Any help?
  댓글 수: 6
John D'Errico
John D'Errico 2021년 4월 16일
Surely you can read the formula from that site?
Walter Roberson
Walter Roberson 2021년 4월 16일
f = @(x) 4.^x - 256;
log4_256 = fzero(f, 1.2345)
log4_256 = 4
4^log4_256
ans = 256

댓글을 달려면 로그인하십시오.

채택된 답변

David Fletcher
David Fletcher 2018년 4월 15일
I assume you mean log10? In Matlab log is base e, so log(e)=1
x=log10(exp(1))
  댓글 수: 6
sultana saffi
sultana saffi 2021년 4월 16일
can you help with this pleas x=log4(256)
John D'Errico
John D'Errico 2021년 4월 16일
@sultana saffi Please stop spamming this question with answers and comments to compute a log to do your homework.
Do you know the basic rule for logs to other bases?
The formula is given here:

댓글을 달려면 로그인하십시오.

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Develop Apps Using App Designer에 대해 자세히 알아보기

태그

Community Treasure Hunt

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

Start Hunting!

Translated by