Can I plot semilogx, semilogy, loglog plots simultaneously by writing in code in a single m file?
16 次查看(过去 30 天)
显示 更早的评论
I have the following code in an m file :
x = linspace(0,10);
y=x.^3;
semilogx(x,y);
semilogy(x,y);
loglog(x,y);
This gives the last plot only. How do I get the rest of the plots?
更多回答(0 个)
另请参阅
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!