Home Reference Source Repository

src/log.js

  1.  
  2. import pointwise from './pointwise'
  3. import spPointwise from './spPointwise'
  4. import Sparse from './Sparse'
  5. import Complex from './Complex'
  6. import atan2 from './atan2'
  7. import abs from './abs'
  8.  
  9. const log = pointwise(Math.log)
  10. const slog = spPointwise(Math.log)
  11.  
  12. function clog(x) {
  13. if (x.im) {
  14. var theta = new Complex(atan2(x.im, x.re)),
  15. r = abs(x);
  16. return new Complex(log(r.re), theta.re);
  17. }
  18. return new Complex(log(x.re));
  19. }
  20.  
  21.  
  22. /**
  23. * Pointwise Math.log(x)
  24. *
  25. * @export
  26. * @param {Number|Array|Complex|Sparse} m
  27. * @returns {Number|Array|Complex|Sparse}
  28. * @example
  29. *
  30. * log(1)
  31. * // returns Math.log(1)
  32. * log([1, 2])
  33. * // returns [Math.log(1), Math.log(2)]
  34. * log([[1,2],[1,3]])
  35. * // returns [ [Math.log(1), Math.log(2)], [Math.log(1), Math.log(3)] ]
  36. */
  37. export default function (m) {
  38. switch (m.constructor.name) {
  39. case 'Complex':
  40. return clog(m);
  41. case 'Sparse':
  42. return slog(m);
  43. default:
  44. return log(m);
  45. }
  46. }