normalize-easy

This package implements normc(), normr() and normv() functions to easily normalize columns and rows of a matrix, and vectors respectively.


Keywords
normr, normc, normv, normalize, rows, columns, math, matrix, linear, algebra, MATLAB
License
BSD-3-Clause
Install
pip install normalize-easy==0.0.3

Documentation

normalize_easy Package

This package implements normc(), normr(), normv() functions to easily normalize columns, rows of 2-D arrays and vectors respectively. This package uses sklearn.preprocessing.normalize and forces the input array to have dtype as float. The input array has to be 2-D for normc() and normr().

  • normc() -> normalizes columns of a 2-D array
  • normr() -> normalizes rows of a 2-D array
  • normv() -> normalizes the 1-D array

To install

  • pip install normalize_easy, or
  • Download the repo and run python setup.py install

To update

  • pip install normalize_easy —-upgrade

Version 0.0.3

  • Cleaner code
  • pep8 compliant