could anyone help me to solve the issue

2 views (last 30 days)
I want to plot the graph with respect to the following code:
x=1:10
for x=1:10
y=log(x)
end
plot (x,y,'*')
When I run the code I am unable to get the correct result.
What I actually need is i want to plot the graph with respect to all values.
Could anyone please help me on it?

Accepted Answer

KSSV
KSSV on 4 Jul 2019
Edited: KSSV on 4 Jul 2019
x=1:10 ;
y = zeros(size(x)) ;
for i=1:length(x)
y(i)=log(x(i)) ;
end
plot (x,y,'*')
No for loop needed
x = 1:10 ;
y = log(x) ;
plot(X,y,'-*')

More Answers (1)

Image Analyst
Image Analyst on 4 Jul 2019
Try this:
x=1:10
y=log(x)
plot (x,y,'b*-')
grid on;
xlabel('x');
ylabel('y');
0001 Screenshot.png

Categories

Find more on 2-D and 3-D Plots in Help Center and File Exchange

Tags

Community Treasure Hunt

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

Start Hunting!