Dear Paraviewers, <br><br>I would like to extract the location of a minimum value from a data set in pvbatch<br><br>I were able to find the value of the minimum with<br><br><pre class="de1"><span class="me1"></span><span class="br0"><br>
<br></span></pre>       mm=MinMax(Uzcomponent)<br>       mm.Operation=&quot;MIN&quot;<br>       mindata=sm.Fetch(Uzcomponent,mm,mm)<br>       mindata.GetPointData().GetNumberOfArrays()<br>       a0 = mindata.GetPointData().GetArray(1)<br>
       a1 = mindata.GetScalar()<br>       print &quot;name 1: &quot;, a0.GetName()<br>       print &quot;tuple1: &quot;, a0.GetTuple1(0)<br><br>Here, a0.GetTyple1 give me the value of the minimum<br><br>However: How do I find the location of this value ?<br>
<br>Any hint appriciate!<br><br>Regards<br><br>Eelco <br><br>