CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 2 of 2
  1. #1
    Join Date
    Oct 2001
    Posts
    6

    Matrix Comparison problem

    I am writing an Image program
    i want to do something like this
    if I have a Matrix
    A = 1 0 0
    . 1 1 0


    and
    B= 1 0 0 1 1 1 1 0 0
    . 1 1 0 0 0 1 1 1 0
    . 1 0 0 1 1 1 1 0 0
    . 1 1 0 0 0 1 1 1 1

    here A repeated 3 time in B
    (i.e B contains 3 3x2 matrix = A )

    how can i do this ?
    i mean that i need to know the number of repeatations


  2. #2
    Join Date
    Oct 2001
    Posts
    6

    Re: Matrix Comparison problem

    Thanks very much this question been answered in Visual C Forum


Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  





Click Here to Expand Forum to Full Width

Featured