Recent content by yazid12111980

  1. Y

    Undergrad Is there a matrix A such that AxB=B?

    Its not a multiplication .. its a cross product. For example: A = 1 2 3 4 5 6 7 8 9 >> B=eye(3) B = 1 0 0 0 1 0 0 0 1 >> cross(B,A) ans = 0 8 -6 -7 0 3 4 -2 0 ?
  2. Y

    Undergrad Is there a matrix A such that AxB=B?

    I tried that .. it doesn't work for cross product !
  3. Y

    Undergrad Is there a matrix A such that AxB=B?

    AxB=B ? Hello, This my first post .. I hope to find someone can help me. My question: Assume that we have a 3x3 matrix B, is there a matrix A such that AxB=B ?? Thanks