Suppose I defined a parameter, coordinate, node or similar within the axis-environment of a tikzpicture and I would like to access those. See e.g.:
\documentclass{article}
\usepackage{tikz}
\usepackage{pgfplots}
\usetikzlibrary{calc}
\begin{document}
\begin{tikzpicture}
\begin{axis}[<parameters>]
\def\V{5};
(0,0) node[color=red](node){Node};
\end{axis}
(0,\V) node[color=red](node2){Node2};
\end{tikzpicture}
\end{document}
Is there some kind of access Modifier (i.e. global/public), so I can use \V or node outside of the axis-environment?
Remark: I am aware, I could define them outside of the axis-environment, and access them within axis, but I am calculating intersections, using \path [name intersections={of=function1 and function2,by=intersection}];, see Intersection, so this is not an Option. Thank you for your help, it is appreciated.

axis, you can access it inside. Likewise, if you define two paths within anaxis, you can compute their intersections outside. And with\xdef\V{5}you make a definition global, if that's what you want. – Nov 08 '18 at 16:02\xdef\V{5} helped.
– Hiwi Makro Nov 08 '18 at 16:11