Weave.jl/test/documents/pyplot_formats_ref.md

54 lines
686 B
Markdown
Raw Normal View History

2014-12-09 14:32:41 +01:00
````julia
using PyPlot
x = linspace(0, 2π, 200)
plot(x, sin(x))
````
![sin(x) function.](figures/pyplot_formats_sin_fun_1.png)
![cos(x) function.](figures/pyplot_formats_2_1.png)
![](figures/pyplot_formats_cos2_fun_1.png)
````julia
julia> x = linspace(0, 2π, 200)
2016-04-11 19:34:36 +02:00
linspace(0.0,6.283185307179586,200)
2014-12-09 14:32:41 +01:00
julia> plot(x, sin(x))
1-element Array{Any,1}:
PyObject <matplotlib.lines.Line2D object at 0x7f702c979c10>
2014-12-09 14:32:41 +01:00
julia> y = 20
20
julia> plot(x, cos(x))
1-element Array{Any,1}:
PyObject <matplotlib.lines.Line2D object at 0x7f702c979e90>
2014-12-09 14:32:41 +01:00
````
![](figures/pyplot_formats_4_1.png)
````julia
x = randn(100, 100)
contourf(x)
````
![](figures/pyplot_formats_5_1.png)