Loglog plot with data value = 0
Afficher commentaires plus anciens
How to plot the data below:
x = [10^-1,10^-2,10^-3,10^-4,10^-5,10^-6,10^-7];
y = [ 0, 10^5, 10^6, 10^7,10^9,10^10,10^13];
loglog(x,y,'ko','MarkerFaceColor','k')
The first y data is not plotted.......
Can anyone help?
Réponses (1)
Ameer Hamza
le 15 Avr 2020
0 = 10^{-Inf}
So the 0 will appear at -infinity in the plot. MATLAB can only display finite axis.
Catégories
En savoir plus sur Log Plots dans Centre d'aide et File Exchange
Produits
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!