aureooms/js-complex Home Manual Reference Source Test Repository

src/cartesian/kernel/core/mul.js

  1.  
  2. /**
  3. * Multiplication algorithm
  4. */
  5.  
  6. export default ( mul , add , sub ) => ( a , b , c , d ) => [ sub( mul( a , c ) , mul( b , d ) ) , add( mul( a , d ) , mul( b , c ) ) ] ;
  7.