I wanted to shade the outside of my unit circle in my code below to get this effect:
Here is my code:
\documentclass{article}
\usepackage{graphicx}
\usepackage{tikz}
\usetikzlibrary{shapes.misc}
\begin{document}
\begin{figure}
\centering
\begin{tikzpicture}[scale=1.5]
% Axes:
\draw [-latex] (-1.5,0) -- (1.5,0) node [above left] {$\Re$};
\draw [-latex] (0,-1.5) -- (0,1.5) node [below right] {$\Im$};
\draw[dashed] (0cm,0cm) circle(1cm);
\node[solid, cross out, draw=black] at (-0.9,0) {};
\node[solid, cross out, draw=black] at (-0.5,0) {};
\node[solid, cross out, draw=black] at (0.75,0) {};
\node[solid, cross out, draw=black] at (0.3,0.3) {};
\node[solid, cross out, draw=black] at (0.3,-0.3) {};
\node[solid, cross out, draw=black] at (0.3,0) {};
\end{tikzpicture}
\caption{Pole plot for $Q(z)$ in the $Z$ plane.}
\label{polezero1}
\end{figure}
\end{document}


