<div dir="ltr">&gt;sure, the syntax of \rput is<br>
&gt;\rput[pos]{angle}(x,y){text}<br>
<br>&gt;Only x,y can be an calculated expression when a preceeding ! is<br>&gt;detected. What do you want to do with the rput.<br>
&gt;Please provide a _full_ minimal example.<br>
<br>&gt;Herbert<br><br>I just want to display the result of numerical calculations at the given coordinates. Well, I have just seen that multiplication works.<br>So if I put  \rput(#2,#4){Radius: #6\pst@number\psyunit}% the argument #6 is multiplied by yunit, but I don&#39;t know how to express the other operations (addition, division, etc)<br>
See (working) example below. What if I need the addition of #6 and \pst@number\psyunit instead of multiplication:<br><br>\listfiles<br>\documentclass[12pt]{article}<br>\usepackage{filecontents}<br>\usepackage{pst-plot}<br>
 <br>\begin{filecontents}{circle.data}<br> 0, 20, 25<br> 100, 150, 23<br>230, 20, 30<br>300, 100, 50<br>450, 50, 25<br>\end{filecontents}<br> <br>\usepackage{pstricks-add}<br>\pagestyle{empty}<br>\parindent=0pt<br> <br>\makeatletter <br>
 \newcommand{\g}{! 10.0 6 mul}%<br>\def\psPrintfLikePlot{\pst@object{psPrintfLikePlot}}<br>\def\psPrintfLikePlot@i#1{\begin@SpecialObj\expandafter\psPrintfLikePlot@ii#1}<br>\def\psPrintfLikePlot@ii #1{\psPrintfLikePlot@iii#1}<br>
\def\psPrintfLikePlot@iii#1 #2 #3 #4 #5 #6 {%<br> \pscircle(#2,#4){! #6 0.02 mul }%<br> \rput(#2,#4){Radius: #6\pst@number\psyunit}%<br>   \@ifnextchar D{\psPrintfLikePlot@iii}{\end@SpecialObj}}<br>\makeatother<br><br>\begin{document}<br>
%FIRST PLANNING INSTANT<br>\psset{xunit=0.02, yunit=0.02}% wirkt auch auf pspicture<br>\begin{pspicture}(-50, -150)(550,150)  %also 6 x 3 cm %%%%%%<br>\psgrid[unit=1cm,subgriddiv=0,griddots=10,gridlabels=0pt, gridwidth=0.3pt] (-1,-3)(10,3)<br>
\psaxes[linewidth=0.7pt,  Dx=100, Dy=100,%<br>    tickstyle=bottom]{-&gt;}(0,0)(-50,-150)(550,150)%<br>%PLOT THE CHOSEN PATH @1<br>%\readdata{\data}{c:/ADATA/DATA1/Patho.txt}<br>%\listplot[plotstyle=dots, linecolor=blue]{\data}<br>
%SUBGOALS<br>\readdata{\data}{circle.data}<br>\psPrintfLikePlot{\data}<br>\end{pspicture}<br><br>\end{document<br><br><br>Thanks,<br><br>Jorge<br><br>
</div>