Hi Lisa,<div><br></div><div><br></div><div>The only embarrassing questions </div><div>are those that are left unasked        :-)<br><br><br>At this point we don&#39;t really have an ITK</div><div>class that encompasses the concept of</div>
<div>an &quot;Array of Vectors&quot;, although you can</div><div>construct it with existing classes.<br><br>May I presume that the norm that you want</div><div>to compute for the Array of Vector is the </div><div>Sum of norms of all the Vectors in the array ?</div>
<div><br></div><div>If so, at this point the easy way to do this</div><div>would be to Instantiate an Array of Vectors,</div><div><br></div><div>and do a for loop visiting all the elements...</div><div><br></div><div>As Array classes you could use the:</div>
<div><br></div><div>typedef itk::Vectors&lt; float, N &gt;   VectorType;</div><div><br></div><div>...</div><div><br></div><div>itk::Array&lt; VectorType &gt;</div><div><br></div><div>or</div><div><br></div><div>itk::VectorContainer&lt;  VectorType &gt;<br>
<br>or simply one of the STL containers</div><div><br></div><div>std::list&lt; VectorType &gt;</div><div>std::vector&lt; VectorType &gt;<br><br>The code could look like:</div><div><br></div><div>typedef std::vector&lt; VectorType &gt;  ArrayOfVectorType;</div>
<div><br></div><div>ArrayOfVectorType   array = this-&gt;GetArraySomehow();<br><br>ArrayOfVectorType::const_iterator  itr = array.begin();</div><div><br></div><div>double sum = 0.0;</div><div>while( itr != array.end() )</div>
<div>  {</div><div>  sum += itr-&gt;GetNorm();</div><div>  ++itr;</div><div>  }</div><div><br></div><div>std::cout &lt;&lt; sum &lt;&lt; std::endl;</div><div><br></div><div><a href="http://www.itk.org/Doxygen/html/classitk_1_1Vector.html#a0f103636ffc85fd3df1ae6c838d3e70e">http://www.itk.org/Doxygen/html/classitk_1_1Vector.html#a0f103636ffc85fd3df1ae6c838d3e70e</a> <br>
<br><br>Depending on your definition of norm</div><div>for an array of vectors, the code above</div><div>may need some retouching.<br><br><br>   HTH</div><div><br></div><div><br></div><div>       Luis<br><br><br>------------------------------------------------------<br>
<div class="gmail_quote">On Tue, May 22, 2012 at 2:06 AM, Lisa Dean <span dir="ltr">&lt;<a href="mailto:lisadean.leo@gmail.com" target="_blank">lisadean.leo@gmail.com</a>&gt;</span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">
<br><div><br></div><div>Hi Users,</div><div><br></div><div><br></div><div>Forgive the embarrassingly basic question, but how do I find the squared norm of an itk array of vectors?</div><div><br></div><div><br></div><div><br>

</div><div>Thanks for the help</div><span class="HOEnZb"><font color="#888888"><div><br></div><div>Lisa</div>
</font></span><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>
Kitware offers ITK Training Courses, for more information visit:<br>
<a href="http://www.kitware.com/products/protraining.php" target="_blank">http://www.kitware.com/products/protraining.php</a><br>
<br>
Please keep messages on-topic and check the ITK FAQ at:<br>
<a href="http://www.itk.org/Wiki/ITK_FAQ" target="_blank">http://www.itk.org/Wiki/ITK_FAQ</a><br>
<br>
Follow this link to subscribe/unsubscribe:<br>
<a href="http://www.itk.org/mailman/listinfo/insight-users" target="_blank">http://www.itk.org/mailman/listinfo/insight-users</a><br>
<br></blockquote></div><br></div>