.norm() - Python for Integrated Circuits - - An Online Book - |
||||||||
| Python for Integrated Circuits http://www.globalsino.com/ICs/ | ||||||||
| Chapter/Index: Introduction | A | B | C | D | E | F | G | H | I | J | K | L | M | N | O | P | Q | R | S | T | U | V | W | X | Y | Z | Appendix | ||||||||
================================================================================= "Taxicab Norm" or "Manhattan Norm", which is represented as ||V||1 ,where V is the representation for the vector. This norm is the sum of the absolute value of the scalars it involves. code: ============================================ "Euclidian Norm", which is represented as ||V||2, where V is the representation for the vector. This norm is the square root of the sum of the squares of the scalars it involves. code: ============================================ Vector Max Norm, which is the maximum of the absolute values of the scalars it involves. code:
|
||||||||
| ================================================================================= | ||||||||
|
|
||||||||