mathlab icon indicating copy to clipboard operation
mathlab copied to clipboard

TODO

Open timqian opened this issue 9 years ago • 0 comments

Pointwise functions

  • [x] clone() Deep copy of Array
  • [x] abs() Absolute value
  • [x] acos() Arc-cosine
  • [x] add() Pointwise sum x+y
  • [x] and() Pointwise x && y
  • [x] asin() Arc-sine
  • [x] atan() Arc-tangeant
  • [x] atan2() Arc-tangeant (two parameters)
  • [x] band() Pointwise x & y
  • [x] bnot() Binary negation ~x
  • [x] bor() Binary or x|y
  • [x] bxor() Binary xor x^y
  • [x] ceil() Pointwise Math.ceil(x)
  • [x] cos() Pointwise Math.cos(x)
  • [x] diag() Create diagonal matrix
  • [x] dim() Get Array dimensions
  • [x] div() Pointwise x/y
  • [x] eq() Pointwise comparison x === y
  • [x] exp() Pointwise Math.exp(x)
  • [x] floor() Poinwise Math.floor(x)
  • [x] geq() Pointwise x>=y
  • [x] gt() Pointwise x>y
  • [x] leq() Pointwise x<=y
  • [x] linspace() Generate evenly spaced values
  • [x] log() Pointwise Math.log(x)
  • [x] lshift() Pointwise x<<y
  • [x] lt() Pointwise x<y
  • [x] mod() Pointwise x%y
  • [x] mul() Pointwise x*y
  • [x] neg() Pointwise -x
  • [x] neq() Pointwise x!==y
  • [x] not() Pointwise logical negation !x
  • [x] or() Pointwise logical or x||y
  • [x] pow() Pointwise Math.pow(x)
  • [x] round() Pointwise Math.round(x)
  • [x] rrshift() Pointwise x>>>y
  • [x] rshift() Pointwise x>>y
  • [x] rshifteq() Pointwise x>>=y
  • [x] sin() Pointwise Math.sin(x)
  • [x] sqrt() Pointwise Math.sqrt(x)
  • [x] sub() Pointwise x-y
  • [x] tan() Pointwise Math.tan(x)
  • [x] xor() Pointwise x^y

timqian avatar Jul 17 '16 05:07 timqian