Chi2fit.Matrix.transpose

You're seeing just the function transpose, go back to Chi2fit.Matrix module for more information.

Specs

transpose(matrix()) :: matrix()

Returns the tranpose of the matrix

Examples:

iex> transpose [ [1] ]
[[1]]

iex> transpose [ [1,2], [3,4] ]
[[1, 3], [2, 4]]