I have a computed a value in a variable in my tikz diagram
\def\smax{750}
\def\samb{100}
\def\H{5}
\pgfmathsetmacro\R{H*\sqrt{((\smax*\smax)/(\samb*\samb)-1)}}
I want to display the value of \R in my diagram:
\coordinate [label=right :$R$ = \R] (mmm) at (5,5);
this does not show/display the numerical value but only the letter 'R'
