Norms documentation¶
Add your content using reStructuredText syntax. See the
reStructuredText
documentation for details.
- demo.norms.euclidean(x)¶
Euclidean Norm of x
- Args:
x (list[float]): A list of floats
- Returns:
float: the euclidean norm of x.
- demo.norms.infinity(x)¶
Infinity norm of x
- Args:
x (list[float]): A list of floats
- Returns:
float: the infinity norm of x.
- demo.norms.manhattan(x)¶
Manhattan Norm of x
- Args:
x (list[float]): A list of floats
- Returns:
float: the manhattan norm of x.