how to plot the log scale for the following values ?
1 visualizzazione (ultimi 30 giorni)
Mostra commenti meno recenti
x = [2.51 ;2.55; 2.56]; y = 10:10:30; semilogy(x,y,'bo-');
Not getting the log scale on Y axis.
2 Commenti
jonas
il 21 Ago 2018
@Shannon: Write an answer instead of a comment! You get some credits and the question is flagged accordingly.
Risposte (2)
Shannon Cherry
il 21 Ago 2018
Use loglog instead of semilogy. Type 'doc loglog' for explanation.
0 Commenti
Dimitris Kalogiros
il 21 Ago 2018
clear; close all; clc;
x = [2.51 ;2.55; 2.56];
y = 10:10:30;
loglog(x,y,'bo-');
grid on; zoom on;
0 Commenti
Vedere anche
Categorie
Scopri di più su Log Plots in Help Center e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!