<div dir="ltr">Hi Utkarsh, this works perfectly! <div><br></div><div>I have a related question...</div><div><br></div><div>I created a custom filter that I'd like to call from within the loop (over the blocks).  Being able to call other filters within the loop would tremendously save time...is there such a possibility?</div><div><br></div><div>Many thanks again for your  fast response earlier,</div><div><br></div><div>Sandeep.</div><div><br></div><div><br></div><div><br></div><div class="gmail_extra"><br><div class="gmail_quote">On Mon, Feb 23, 2015 at 1:54 PM, Utkarsh Ayachit <span dir="ltr"><<a href="mailto:utkarsh.ayachit@kitware.com" target="_blank">utkarsh.ayachit@kitware.com</a>></span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><div class="HOEnZb"><div class="h5">On Mon, Feb 23, 2015 at 1:53 PM, Utkarsh Ayachit<br>
<<a href="mailto:utkarsh.ayachit@kitware.com">utkarsh.ayachit@kitware.com</a>> wrote:<br>
> It'll be something like follows:<br>
><br>
> Programmable Filter: OutputDataSetType= "vtkTable".<br>
> ==============================================<br>
> Script<br>
> ==============================================<br>
> import numpy as np<br>
><br>
> size = 0<br>
> for input_block  in inputs[0]:<br>
>   size += 1<br>
> meanArray = np.zeros(size, dtype = np.float64)<br>
><br>
> index = 0<br>
> for input_block  in inputs[0]:<br>
>   mean = np.mean(input_block.PointData["Elevation"])<br>
>   meanArray[index] = mean<br>
>   index += 1<br>
> output.RowData.append(meanArray, "MeanElevation")<br>
><br>
> A 4.3.1 state file attached.<br>
><br>
> Utkarsh<br>
><br>
> On Mon, Feb 23, 2015 at 11:16 AM, Sandeep Jella <<a href="mailto:sandeepjella@gmail.com">sandeepjella@gmail.com</a>> wrote:<br>
>> Hello,<br>
>><br>
>> I have a list of surfaces that I would like to automatically loop over and<br>
>> calculate means and standard deviations of a variable on each and then plot<br>
>> to a single plot.<br>
>><br>
>> I guess I'd have to do this in a programmable filter attached to the<br>
>> multiblock entity* but need some guidance on the code/macro that will  loop<br>
>> over the surfaces.<br>
>><br>
>> *  (I used the "Extract block" functionality which selects a bunch of<br>
>> surfaces from a much larger dataset)<br>
>><br>
>> Many thanks,<br>
>><br>
>> Sandeep.<br>
>><br>
>> _______________________________________________<br>
>> Powered by <a href="http://www.kitware.com" target="_blank">www.kitware.com</a><br>
>><br>
>> Visit other Kitware open-source projects at<br>
>> <a href="http://www.kitware.com/opensource/opensource.html" target="_blank">http://www.kitware.com/opensource/opensource.html</a><br>
>><br>
>> Please keep messages on-topic and check the ParaView Wiki at:<br>
>> <a href="http://paraview.org/Wiki/ParaView" target="_blank">http://paraview.org/Wiki/ParaView</a><br>
>><br>
>> Search the list archives at: <a href="http://markmail.org/search/?q=ParaView" target="_blank">http://markmail.org/search/?q=ParaView</a><br>
>><br>
>> Follow this link to subscribe/unsubscribe:<br>
>> <a href="http://public.kitware.com/mailman/listinfo/paraview" target="_blank">http://public.kitware.com/mailman/listinfo/paraview</a><br>
>><br>
</div></div></blockquote></div><br></div></div>