Skip to content

Commit

Permalink
README corrected
Browse files Browse the repository at this point in the history
  • Loading branch information
gyrdym committed Mar 11, 2019
1 parent 1a6e734 commit a87039b
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions CHANGELOG.md
@@ -1,9 +1,9 @@
# Changelog

## 6.1.0
- `Vector`: normalize method added to interface and supported
- `Vector`: rescale method added to interface and supported
- `Vector`: cache for popular operations implemented
- `Vector`: normalize method added to interface and supported in `Float32x4Vector`
- `Vector`: rescale method added to interface and supported in `Float32x4Vector`
- `VectorBase`: cache for popular operations implemented

## 6.0.2
- `Matrix`: `MatrixMixin` corrected
Expand Down
2 changes: 1 addition & 1 deletion README.md
Expand Up @@ -230,7 +230,7 @@ At the present moment most common vector operations are implemented:
import 'package:ml_linalg/linalg.dart';
final vector = Vector.from([1.0, -2.0, 3.0, -4.0, 5.0]);
final result = vector.normalize(Norm.euclidean);
final result = vector.normalize(Norm.manhattan);
print(result); // [0.066, -0.133, 0.200, -0.266, 0.333]
````

Expand Down

0 comments on commit a87039b

Please sign in to comment.