Home Reference Source Repository

src/dim.js

  1. /**
  2. * Get Array dimensions
  3. *
  4. * @export
  5. * @param {Array} x
  6. * @returns {Array}
  7. * @example
  8. *
  9. * dim([[1, 2, 3], [1, 2, 2]])
  10. * // [2, 3]
  11. */
  12. export default function(x) {
  13. switch (x.constructor.name) {
  14. case 'Complex':
  15. return cdim(x);
  16. case 'Sparse':
  17. return sdim(x);
  18. default:
  19. return dim(x);
  20. }
  21. }
  22.  
  23. function cdim(x) {
  24. if (x.re) {
  25. return dim(x.re)
  26. } else {
  27. return dim(x.im)
  28. }
  29. }
  30.  
  31. function sdim(x) {
  32. return [x.col.length-1, x.col.length-1];
  33. }
  34.  
  35.  
  36. function dim (x) {
  37. if (typeof x === 'object') {
  38. if (typeof x[0] === 'object') {
  39. if (typeof x[0][0] === 'object') {
  40. throw new Error('mathlab: only support two demitional matrix for now')
  41. }
  42. return [x.length, x[0].length]
  43. }
  44. return [x.length]
  45. }
  46. return []
  47. }