Comparing version 1.0.1 to 1.0.2
{ | ||
"name": "blas-dasum", | ||
"version": "1.0.1", | ||
"description": "Computes the sum of absolute values.", | ||
"version": "1.0.2", | ||
"description": "Computes the sum of absolute values (L1 norm).", | ||
"author": { | ||
@@ -44,3 +44,7 @@ "name": "Athan Reines", | ||
"vector", | ||
"array" | ||
"array", | ||
"l1norm", | ||
"norm", | ||
"taxicab", | ||
"manhattan" | ||
], | ||
@@ -47,0 +51,0 @@ "bugs": { |
@@ -5,5 +5,12 @@ dasum | ||
> Computes the sum of [absolute values][absolute-value]. | ||
> Computes the sum of [absolute values][absolute-value] ([*L1* norm][l1norm]). | ||
The [*L1* norm][l1norm] is defined as | ||
<div class="equation" align="center" data-raw-text="\|\mathbf{x}\|_1 = \sum_{i=0}^{n-1} \vert x_i \vert" data-equation="eq:l1norm"> | ||
<img src="" alt="L1 norm definition."> | ||
<br> | ||
</div> | ||
## Installation | ||
@@ -184,1 +191,2 @@ | ||
[absolute-value]: https://github.com/math-io/abs | ||
[l1norm]: http://en.wikipedia.org/wiki/Norm_(mathematics) |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
8778
191