how to plot the log scale for the following values ?
Show older comments
x = [2.51 ;2.55; 2.56]; y = 10:10:30; semilogy(x,y,'bo-');
Not getting the log scale on Y axis.
2 Comments
jonas
on 21 Aug 2018
@Shannon: Write an answer instead of a comment! You get some credits and the question is flagged accordingly.
Shannon Cherry
on 21 Aug 2018
Thanks, I'm new to this and this was my first answer.
Answers (2)
Shannon Cherry
on 21 Aug 2018
1 vote
Use loglog instead of semilogy. Type 'doc loglog' for explanation.
Dimitris Kalogiros
on 21 Aug 2018
clear; close all; clc;
x = [2.51 ;2.55; 2.56];
y = 10:10:30;
loglog(x,y,'bo-');
grid on; zoom on;
Categories
Find more on Log Plots 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!