You are on page 1of 1

\documentclass[10pt]{article}

\usepackage{pgfplots}
\pgfplotsset{compat=1.15}
\usepackage{mathrsfs}
\usetikzlibrary{arrows}
\pagestyle{empty}

%<<<<<<<WARNING>>>>>>>
% PGF/Tikz doesn't support the following mathematical functions:
% cosh, acosh, sinh, asinh, tanh, atanh,
% x^r with r not integer

% Plotting will be done using GNUPLOT


% GNUPLOT must be installed and you must allow Latex to call external
% programs by adding the following option to your compiler
% shell-escape OR enable-write18
% Example: pdflatex --shell-escape file.tex

\begin{document}
\definecolor{ffvvqq}{rgb}{1,0.3333333333333333,0}
\definecolor{qqqqff}{rgb}{0,0,1}
\definecolor{qqwuqq}{rgb}{0,0.39215686274509803,0}
\begin{tikzpicture}[line cap=round,line join=round,>=triangle 45,x=1cm,y=1cm]
\begin{axis}[
x=1cm,y=1cm,
axis lines=middle,
ymajorgrids=true,
xmajorgrids=true,
xmin=-0.29335537656771793,
xmax=11.335090076258917,
ymin=-3.416941788617882,
ymax=3.583747440599985,
xtick={0,1,...,11},
ytick={-3,-2,...,3},]
\clip(-0.29335537656771793,-3.416941788617882) rectangle
(11.335090076258917,3.583747440599985);
\draw[line width=2pt,color=qqwuqq,smooth,samples=100,domain=6.824892067356853e-
8:11.335090076258917]
plot(\x,{(2/((\x)*3.141592653589793))^(1/2)*sin(((\x))*180/pi)});
\draw[line width=2pt,color=qqqqff,smooth,samples=100,domain=6.824892067356853e-
8:11.335090076258917]
plot(\x,{(2/((\x)*3.141592653589793))^(1/2)*cos(((\x))*180/pi)});
\draw[line width=2pt,color=ffvvqq,smooth,samples=100,domain=6.824892067356853e-
8:11.335090076258917] plot(\x,{(2/((\x)*3.141592653589793))^(1/2)*cos(((\x)-
3.141592653589793/2)*180/pi)});
\begin{scriptsize}
\draw[color=qqwuqq] (0.3723543354131236,0.08877145270057431) node {$J_{(1)/(2)}$};
\draw[color=qqqqff] (0.49046412302262776,3.4924807865380956) node {$J_{-((1)/(2))}
$};
\draw[color=ffvvqq] (0.17908377387029864,0.0028734253482078365) node {$J_{0}$};
\end{scriptsize}
\end{axis}
\end{tikzpicture}
\end{document}

You might also like