dodanie wykresu

This commit is contained in:
Grzegorz Adamski 2017-11-09 18:58:05 +01:00
parent a03bdde3ab
commit 32c1da0865
2 changed files with 22 additions and 6 deletions

Binary file not shown.

View File

@ -77,10 +77,26 @@ title ={ $\sin(\frac{1}{x})$ }
\addplot 3[surf,domain =-10:10, samples =50]{x*x-y*y + 2*x*y*y+1};
\end{axis}
\end{tikzpicture}
%\( x\mapsto \cos 2x\)
%\( x\mapsto\sin \tfrac{1}{x}\)
%\( (x,y)\mapsto x^2+y^2\)
%\((x,y)\mapsto x^2y^2 + 2 x y ^2+1\) z wykorzystaniem omówionych
% podczas prezentacji możliwości. Narysować wykres funkcji \(x\mapsto
% x^2-1\) z wykorzystaniem stablicowanych danych.
\begin{tikzpicture}
\begin{axis}[
axis x line=center ,
axis y line=center ,
xtick ={-5,-4,...,8},
ytick ={-5,-4,...,8},
xlabel ={$x$},
ylabel ={$y$},
xlabel style ={below right},
ylabel style ={right},
xmin=-5,
xmax =5,
ymin=-2,
ymax =8,
title={$x^2-1$}
]
\addplot[line width=1pt] gnuplot [raw gnuplot]{plot 'wykresik.dat' using 1:2
};
\end{axis}
\end{tikzpicture}
\end{document}