Weave.jl/test/documents/pyplot_formats_ref.tex

59 lines
1.5 KiB
TeX
Raw Normal View History

\begin{juliacode}
using PyPlot
2014-12-09 14:32:41 +01:00
x = linspace(0, 2π, 200)
plot(x, sin(x))
\end{juliacode}
\begin{juliaout}
1-element Array{Any,1}:
2016-12-19 18:12:02 +01:00
PyObject <matplotlib.lines.Line2D object at 0x7f8aa1b99588>
\end{juliaout}
\begin{figure}[ht]
\center
\includegraphics[width=\linewidth]{figures/pyplot_formats_sin_fun_1.pdf}
\caption{sin(x) function.}
\label{fig:sin_fun}
\end{figure}
2014-12-09 14:32:41 +01:00
\begin{juliaout}
1-element Array{Any,1}:
2016-12-19 18:12:02 +01:00
PyObject <matplotlib.lines.Line2D object at 0x7f8aa1d6cf60>
\end{juliaout}
\begin{figure}[htpb]
\center
\includegraphics[width=\linewidth]{figures/pyplot_formats_2_1.pdf}
\caption{cos(x) function.}
\end{figure}
2014-12-09 14:32:41 +01:00
\begin{juliaout}
1-element Array{Any,1}:
2016-12-19 18:12:02 +01:00
PyObject <matplotlib.lines.Line2D object at 0x7f8aa1cd9f28>
\end{juliaout}
\includegraphics[width=\linewidth]{figures/pyplot_formats_cos2_fun_1.pdf}
2014-12-09 14:32:41 +01:00
\begin{juliaterm}
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
2014-12-09 14:32:41 +01:00
julia> plot(x, sin(x))
1-element Array{Any,1}:
2016-12-19 18:12:02 +01:00
PyObject <matplotlib.lines.Line2D object at 0x7f8aa1cc0ba8>
2014-12-09 14:32:41 +01:00
julia> y = 20
20
2014-12-09 14:32:41 +01:00
julia> plot(x, cos(x))
1-element Array{Any,1}:
2016-12-19 18:12:02 +01:00
PyObject <matplotlib.lines.Line2D object at 0x7f8aa1cc0e10>
2014-12-09 14:32:41 +01:00
\end{juliaterm}
\includegraphics[width=\linewidth]{figures/pyplot_formats_4_1.pdf}
2014-12-09 14:32:41 +01:00
\begin{juliacode}
x = randn(100, 100)
2014-12-09 14:32:41 +01:00
contourf(x)
\end{juliacode}
\begin{juliaout}
2016-12-19 18:12:02 +01:00
PyObject <matplotlib.contour.QuadContourSet object at 0x7f8aa1c2f198>
\end{juliaout}
\includegraphics[width=15cm]{figures/pyplot_formats_5_1.pdf}