[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: draw line upper points
From: |
mecht |
Subject: |
Re: draw line upper points |
Date: |
Sat, 10 Nov 2018 07:14:26 -0600 (CST) |
you can always add a line plot over your stem plot:
x=1:2:200;
stem(x,"marker","none"); hold on;
plot(linspace(1,length(x),length(x)),x,'k',"LineWidth",3);
Or if you only want to make your points to be visible more you can write:
stem(x,'b',"filled");
Points will not create line, but in high quantities they look like a line
(at least for me) : )
--
Sent from: http://octave.1599824.n4.nabble.com/Octave-General-f1599825.html