glue_cross_meat.hpp 2.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879
  1. // Copyright 2008-2016 Conrad Sanderson (http://conradsanderson.id.au)
  2. // Copyright 2008-2016 National ICT Australia (NICTA)
  3. //
  4. // Licensed under the Apache License, Version 2.0 (the "License");
  5. // you may not use this file except in compliance with the License.
  6. // You may obtain a copy of the License at
  7. // http://www.apache.org/licenses/LICENSE-2.0
  8. //
  9. // Unless required by applicable law or agreed to in writing, software
  10. // distributed under the License is distributed on an "AS IS" BASIS,
  11. // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  12. // See the License for the specific language governing permissions and
  13. // limitations under the License.
  14. // ------------------------------------------------------------------------
  15. //! \addtogroup glue_cross
  16. //! @{
  17. template<typename T1, typename T2>
  18. inline
  19. void
  20. glue_cross::apply(Mat<typename T1::elem_type>& out, const Glue<T1, T2, glue_cross>& X)
  21. {
  22. arma_extra_debug_sigprint();
  23. typedef typename T1::elem_type eT;
  24. const Proxy<T1> PA(X.A);
  25. const Proxy<T2> PB(X.B);
  26. arma_debug_check( ((PA.get_n_elem() != 3) || (PB.get_n_elem() != 3)), "cross(): each vector must have 3 elements" );
  27. out.set_size(PA.get_n_rows(), PA.get_n_cols());
  28. eT* out_mem = out.memptr();
  29. if( (Proxy<T1>::use_at == false) && (Proxy<T2>::use_at == false) )
  30. {
  31. typename Proxy<T1>::ea_type A = PA.get_ea();
  32. typename Proxy<T2>::ea_type B = PB.get_ea();
  33. const eT ax = A[0];
  34. const eT ay = A[1];
  35. const eT az = A[2];
  36. const eT bx = B[0];
  37. const eT by = B[1];
  38. const eT bz = B[2];
  39. out_mem[0] = ay*bz - az*by;
  40. out_mem[1] = az*bx - ax*bz;
  41. out_mem[2] = ax*by - ay*bx;
  42. }
  43. else
  44. {
  45. const bool PA_is_col = Proxy<T1>::is_col ? true : (PA.get_n_cols() == 1);
  46. const bool PB_is_col = Proxy<T2>::is_col ? true : (PB.get_n_cols() == 1);
  47. const eT ax = PA.at(0,0);
  48. const eT ay = PA_is_col ? PA.at(1,0) : PA.at(0,1);
  49. const eT az = PA_is_col ? PA.at(2,0) : PA.at(0,2);
  50. const eT bx = PB.at(0,0);
  51. const eT by = PB_is_col ? PB.at(1,0) : PB.at(0,1);
  52. const eT bz = PB_is_col ? PB.at(2,0) : PB.at(0,2);
  53. out_mem[0] = ay*bz - az*by;
  54. out_mem[1] = az*bx - ax*bz;
  55. out_mem[2] = ax*by - ay*bx;
  56. }
  57. }
  58. //! @}