how to draw line between points in Matlab

6 Ansichten (letzte 30 Tage)
Meriem Boukhaima
Meriem Boukhaima am 9 Jan. 2017
Bearbeitet: Niels am 9 Jan. 2017
I have to plot a graph showing results in a for loop, the problem is that I only get points instead of a proper graph: here is my code:
%this program plots the number of iterations versus the
% errors in a bisection methode which is used to find he zero of a function.
clc
a=0;
b=2;
E0=[]
f=@(x)exp(-exp(-x))-x %the nonlinear function
for i=3:10
e=10^-i
n=ceil(log(b-a)-log(e)/log(2))
hold on
axis([10^-10 10^-3 0 12])
grid on
plot(e,n,'.')
for i=1:n
c=(a+b)/2;
if f(c)*f(a)<0
b=c;
else
a=c;
end
end
end
your help is Appreciated! Thank you
  1 Kommentar
dpb
dpb am 9 Jan. 2017
Because points is all you asked for...
plot(e,n,'.')
Remove the '.' linestyle string

Melden Sie sich an, um zu kommentieren.

Akzeptierte Antwort

Niels
Niels am 9 Jan. 2017
Bearbeitet: Niels am 9 Jan. 2017
if you want lines between the points you have to save the data in vectors and plot the vectors, not single points
i changed some lines in your codes, take a look
a=0;
b=2;
E0=[];
% since you know what size e and n will have you can define them here alrdy
[e,n]=deal(zeros(8,1))
f=@(x)exp(-exp(-x))-x; %the nonlinear function
for i=3:10
% index starts at 1
e(i-2)=10^-i;
n(i-2)=ceil(log(b-a)-log(e(i-2))/log(2));
hold on
axis([10^-10 10^-3 0 12])
grid on
% points can still be plottet
plot(e(i-2),n(i-2),'.')
% why i again, you used i inprevious loop
% dont use same variable for index of a loop in a loop
for j=1:n
c=(a+b)/2;
if f(c)*f(a)<0
b=c;
else
a=c;
end
end
end
% plot lines between the points
plot(e,n)
you should test this comman with other examples like
x=linspace(0,2*pi,100);
plot(x,sin(x))
  2 Kommentare
Meriem Boukhaima
Meriem Boukhaima am 9 Jan. 2017
Thank you very much, I finally got the plot I want:
%This program plots the required number of iteration versus the error
clc
clear
a=0;
b=2;
for i=3:10
e(i-2)=10^-i;
n(i-2)=(log(b-a)-log(e(i-2)))/log(2);
hold on
axis([0 10^-3 0 30])
grid on
plot(e(i-2),n(i-2),'.')
end
plot(e,n)
I removed deal because I didn't know what it does, but it worked without it, can you explain what's the point of it?
Thank you a lot!!!
Niels
Niels am 9 Jan. 2017
Bearbeitet: Niels am 9 Jan. 2017
If you look at your code e and n should be underlined in red. Read what matlab displays. It should be something like e and n changes size every ... so to start with e is not defined. Then its a 1x1 vector. Next iteration its 1x2 etc same for n. This slows down matlab but in your case its not rly worth mentioning. In general if the size is know you better define the variable. Deal(zeros...) sets the previous mentioned variables to a 8x1 vector, each entry 0

Melden Sie sich an, um zu kommentieren.

Weitere Antworten (1)

Image Analyst
Image Analyst am 9 Jan. 2017
You didn't completely specify the line style. You can specify color, line style, and marker. For example to do a red solid line of width 2, with spot shaped markers of size 15:
plot(e, n, 'r.-', 'LineWidth', 2, 'MarkerSize', 15);

Kategorien

Mehr zu Discrete Data Plots finden Sie in Help Center und File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by