Log display problem semilogx

1 view (last 30 days)
Hi i want to show graph with log scale on x . this is my code:
a=5;
b=2;
x=0.0001:1000000;
y=@(x) ax+b;
figure
semilogx(x,y)
hold off
and this is my error:
Error using semilogx
Invalid data argument.
Error in Untitled1 (line 6)
semilogx(x,y)
i read how use semilogx and have no idea where i make mistake

Accepted Answer

KALYAN ACHARJYA
KALYAN ACHARJYA on 19 Nov 2019
a=5;
b=2;
x=0.0001:1000000;
y=a*x+b;
figure
semilogx(x,y)

More Answers (0)

Categories

Find more on Graphics Object Programming in Help Center and File Exchange

Products

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!