RE: Connecting discontinuous plots
- To: mathgroup at smc.vnet.net
- Subject: [mg93785] RE: [mg93734] Connecting discontinuous plots
- From: "David Park" <djmpark at comcast.net>
- Date: Tue, 25 Nov 2008 07:21:01 -0500 (EST)
- References: <21144462.1227518368928.JavaMail.root@m02>
Use the Exclusions option.
p1 = UnitStep[t - 1]
p2 = UnitStep[t - 2]
Plot[p1 - p2, {t, -1, 5},
PlotStyle -> {Red, Thick},
Exclusions -> None]
David Park
djmpark at comcast.net
http://home.comcast.net/~djmpark
From: jsheinwald at comcast.net [mailto:jsheinwald at comcast.net]
Hello,
In the following simple step function plot is there a way to connect the
discontinuities at 1 and 2 so that the plot shows up better?
p1=UnitStep[t-1]
p2=UnitStep[t-2]
Plot[p1-p2,{t,-1,5},PlotStyleR{Red, Thick}]
Thanks!