formula for changing the base of a logarithm is: loga(N) = (logb(N))/(logb(a)) (a) Use MATLAB's function log (x) to calculate log4(0.085)
31 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
Can you guide me about log4(0.85) 4 is writen below the log
0 Kommentare
Antworten (1)
Karim
am 20 Sep. 2022
You can create a function handle to eval the desired base:
log4_fun = @(x) log(x) / log(4)
log4_fun(0.85)
0 Kommentare
Siehe auch
Kategorien
Find more on Programming Utilities in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!