From ccd15771726d63677c2cfb1fd06904b65b277d36 Mon Sep 17 00:00:00 2001 From: Uwe Fechner Date: Sat, 23 Mar 2024 20:53:39 +0100 Subject: [PATCH] Update examples --- examples/multi-channel.jl | 2 +- examples/plotxy.jl | 2 +- examples/simple.jl | 2 +- src/ControlPlots.jl | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) 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