Connecting multiple scattered points through a line

1 view (last 30 days)
Hi
I plot a scatter for multiple points and i want to connect them using line. Below is my code. The plot i get is only scatter, I cant connect them through a line. Any help appreciated!
subplot(2,2,2)
hold all
for i=1:8
scatter(Emax{1,i},Eneregy{i}-Loss{1,i},'X')
line(Emax{1,i},-Loss{1,i})
end
Thanks
Matt

Answers (0)

Community Treasure Hunt

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

Start Hunting!