diff --git a/examples/multi-channel.jl b/examples/multi-channel.jl index c52557b..90c65ef 100644 --- a/examples/multi-channel.jl +++ b/examples/multi-channel.jl @@ -1,4 +1,4 @@ -using PyPlotExt +using ControlPlots T = 0:0.1:2pi X = sin.(T) diff --git a/examples/plotxy.jl b/examples/plotxy.jl index 49575ab..2352d16 100644 --- a/examples/plotxy.jl +++ b/examples/plotxy.jl @@ -1,4 +1,4 @@ -using PyPlotExt +using ControlPlots T = 0:0.1:2pi+0.1 X = sin.(T) diff --git a/examples/simple.jl b/examples/simple.jl index 019fe70..a21f79a 100644 --- a/examples/simple.jl +++ b/examples/simple.jl @@ -1,4 +1,4 @@ -using PyPlotExt +using ControlPlots X = 0:0.1:2pi Y = sin.(X) diff --git a/src/ControlPlots.jl b/src/ControlPlots.jl index e7f3e23..0bb06a5 100644 --- a/src/ControlPlots.jl +++ b/src/ControlPlots.jl @@ -1,4 +1,4 @@ -module PyPlotExt +module ControlPlots import PyPlot as plt import PyPlot.show as plshow