how can I plot y=log(2,(2-a)) ?
Afficher commentaires plus anciens
How can I plot y = log(2,(2-a) in matlab: I have written this code but unfortunately I encounter with errors:
a = 0:0.2:1;
C_ro = plot(-(a./2).*log(2,a./2) - ((2 - a)./2).*log(2,(2 - a)./2));
plot(a, C_ro)
1 commentaire
Azzi Abdelmalek
le 26 Août 2013
What is log(a,b)?
Réponse acceptée
Plus de réponses (1)
Osama AlThahab
le 26 Août 2013
0 votes
your code is wrong, remove plot from C_ro
Catégories
En savoir plus sur 2-D and 3-D Plots 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!