Module non_macro

Source
Expand description

Macro to non macro function

§R like non-macro functions

  • seq
  • seq_with_precision
  • rbind
  • cbind

§MATLAB like non-macro functions

  • eye
  • eye_shape
  • zeros
  • zeros_shape
  • linspace
  • linspace_with_precision
  • rand
  • rand_with_rng
  • rand_with_dist

§Numpy like non-macro functions

  • logspace
  • column_stack
  • row_stack

§Haskell like non-macro functions

  • concat
  • cat

Enums§

ConcatenateError

Functions§

cat
Concatenate a value and vector
cbind
R like cbind - concatenate two matrix by column direction
column_stack
Numpy like column_stack
concat
Concatenate two vectors into one
eye
MATLAB like eye - Identity matrix
eye_shape
eye with custom shape
linspace
MATLAB like linspace
linspace_with_precision
linspace with precision
logspace
Numpy like logspace
rand
Rand matrix
rand_with_dist
Rand matrix with specific rng and distribution
rand_with_rng
Rand matrix with specific rng
rbind
R like rbind - concatenate two matrix by row direction
row_stack
Numpy like row_stack
seq
R like seq function
seq_with_precision
Seq with Precision
zeros
MATLAB like zeros (Matrix)
zeros_shape
Zeros with custom shape