in

.NET Opensource

Community for opensource projects by Christoph Rüegg

Vector.ToRowMatrix() & Vector.ToColumnMatrix() bug

Last post 06-06-2008 21:24 by Christoph Rüegg. 1 replies.
Page 1 of 1 (2 items)
Sort Posts: Previous Next
  • 06-02-2008 3:10

    Vector.ToRowMatrix() & Vector.ToColumnMatrix() bug

    Minor bug with a quick fix: 

    The for statement

    for(int i = 0; i < m.Length; i++)

     needs to be replaced with

    for(int i = 0; i < _length; i++)

     To gurantee correct ouput.

  • 06-06-2008 21:24 In reply to

    Re: Vector.ToRowMatrix() & Vector.ToColumnMatrix() bug

    Answer

    Thanks for reporting. The issue IRID-171 has just been fixed in revision 457.

Page 1 of 1 (2 items)
Powered by Community Server (Non-Commercial Edition), by Telligent Systems