how to write log base 2 in matlab coding
Afficher commentaires plus anciens
expression for log base 2 in matlab coding
Réponse acceptée
Plus de réponses (1)
Andrew Rockhill
le 16 Sep 2022
0 votes
To find the log in any base, make use of the base-change formula:
log_b(x) = log_a(x)/log_a(b)
So you can create a function logb = @(b,x) log(x)/log(b);
Then Y = logb(2,x);
Or, more generally;
Y = logb(b,x);
Catégories
En savoir plus sur MATLAB dans Centre d'aide et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!