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!