how to plot the log scale for the following values ?
1 次查看(过去 30 天)
显示 更早的评论
x = [2.51 ;2.55; 2.56]; y = 10:10:30; semilogy(x,y,'bo-');
Not getting the log scale on Y axis.
2 个评论
jonas
2018-8-21
@Shannon: Write an answer instead of a comment! You get some credits and the question is flagged accordingly.
回答(2 个)
Dimitris Kalogiros
2018-8-21
clear; close all; clc;
x = [2.51 ;2.55; 2.56];
y = 10:10:30;
loglog(x,y,'bo-');
grid on; zoom on;
0 个评论
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Log Plots 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!