aureooms/js-complex Home Manual Reference Source Test Repository

src/polar/kernel/core/con.js

  1.  
  2. /**
  3. * Conjugate for polar representation
  4. */
  5.  
  6. export default neg => ( a , b ) => [ a , neg( b ) ] ;
  7.