Weave.jl/test/documents/pyplot_formats_ref.rst

86 lines
1.3 KiB
ReStructuredText
Raw Normal View History

2014-12-09 14:32:41 +01:00
.. code-block:: julia
using PyPlot
x = linspace(0, 2π, 200)
plot(x, sin(x))
2017-03-13 15:12:57 +01:00
2014-12-09 14:32:41 +01:00
::
1-element Array{Any,1}:
2017-03-13 15:12:57 +01:00
PyObject <matplotlib.lines.Line2D object at 0x7fbd50edb0b8>
2014-12-09 14:32:41 +01:00
.. figure:: figures/pyplot_formats_sin_fun_1.svg
:width: 15 cm
sin(x) function.
::
1-element Array{Any,1}:
2017-03-13 15:12:57 +01:00
PyObject <matplotlib.lines.Line2D object at 0x7fbd514a7780>
2014-12-09 14:32:41 +01:00
.. figure:: figures/pyplot_formats_2_1.svg
:width: 15 cm
cos(x) function.
::
1-element Array{Any,1}:
2017-03-13 15:12:57 +01:00
PyObject <matplotlib.lines.Line2D object at 0x7fbd580c6080>
2014-12-09 14:32:41 +01:00
.. image:: figures/pyplot_formats_cos2_fun_1.svg
:width: 15 cm
.. code-block:: julia
julia> x = linspace(0, 2π, 200)
200-element LinSpace{Float64}:
0.0,0.0315738,0.0631476,0.0947214,0.126295,…,6.18846,6.22004,6.25161,6.28319
2017-03-13 15:12:57 +01:00
julia> plot(x, sin(x))
1-element Array{Any,1}:
2017-03-13 15:12:57 +01:00
PyObject <matplotlib.lines.Line2D object at 0x7fbd585a7320>
2017-03-13 15:12:57 +01:00
julia> y = 20
20
2017-03-13 15:12:57 +01:00
julia> plot(x, cos(x))
1-element Array{Any,1}:
2017-03-13 15:12:57 +01:00
PyObject <matplotlib.lines.Line2D object at 0x7fbd58612128>
2014-12-09 14:32:41 +01:00
.. image:: figures/pyplot_formats_4_1.svg
:width: 15 cm
.. code-block:: julia
x = randn(100, 100)
contourf(x)
2017-03-13 15:12:57 +01:00
2014-12-09 14:32:41 +01:00
::
2017-03-13 15:12:57 +01:00
PyObject <matplotlib.contour.QuadContourSet object at 0x7fbd5a2d8e48>
2014-12-09 14:32:41 +01:00
.. image:: figures/pyplot_formats_5_1.svg
:width: 15cm