How can I write log(e) in MATLAB?
Mostrar comentarios más antiguos
I am trying to calculate x=log(e) but I can not. Any help?
6 comentarios
sultana saffi
el 16 de Abr. de 2021
x=log(e)
sultana saffi
el 16 de Abr. de 2021
how can i give this function
sultana saffi
el 16 de Abr. de 2021
I am trying to calculate x=log4(256) but i can not.Any help pleas?
sultana saffi
el 16 de Abr. de 2021
x=log4(256)
John D'Errico
el 16 de Abr. de 2021
Surely you can read the formula from that site?
f = @(x) 4.^x - 256;
log4_256 = fzero(f, 1.2345)
4^log4_256
Respuesta aceptada
Más respuestas (0)
Categorías
Más información sobre Exponents and Logarithms en Centro de ayuda y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!