Skip to content

Commit fbdddab

Browse files
committed
Prepare for release.
1 parent b1fe789 commit fbdddab

File tree

3 files changed

+22
-7
lines changed

3 files changed

+22
-7
lines changed

CHANGELOG.md

+5
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
# v1.0.0
2+
3+
* Improved DBSCAN implementation.
4+
* Added linear algebra.
5+
16
# v0.10.8
27

38
* Added DBSCAN.

NumFlat/NumFlat.csproj

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
<GenerateDocumentationFile>True</GenerateDocumentationFile>
99
<GeneratePackageOnBuild>True</GeneratePackageOnBuild>
1010
<Title>NumFlat</Title>
11-
<Version>0.10.8</Version>
11+
<Version>1.0.0</Version>
1212
<Authors>Nobuaki Tanaka</Authors>
1313
<Description>A numerical computation library for C#</Description>
1414
<PackageProjectUrl>https://github.com/sinshu/numflat</PackageProjectUrl>

README.md

+16-6
Original file line numberDiff line numberDiff line change
@@ -493,11 +493,12 @@ Mat.Add(x, y, destination);
493493
### Multivariate analyses
494494
The `NumFlat.MultivariateAnalyses` namespace provides functionality related to multivariate analysis.
495495
It currently supports the following methods, with plans to add more methods in the future.
496+
* Linear regression
497+
* Logistic regression
496498
* PCA (principal component analysis)
497499
* LDA (linear discriminant analysis)
498500
* ICA (independent component analysis)
499501
* NMF (non-negative matrix factorization)
500-
* Logistic regression
501502
#### Code
502503
```cs
503504
using NumFlat.MultivariateAnalyses;
@@ -677,13 +678,18 @@ Matrix 3x3-Double
677678
- ✅ Weighted sum, mean, variance, covariance for vectors
678679
- ✅ Weighted sum, mean, variance for matrices
679680
- ✅ Higher-order statistics
680-
* 🚧 Multivariate analysis
681-
- ⬜ Linear regression
681+
* ⬜ Multivariate analysis
682+
- ✅ Linear regression
683+
- ✅ Logistic regression
682684
- ✅ PCA (principal component analysis)
683685
- ✅ LDA (linear discriminant analysis)
684686
- ✅ ICA (independent component analysis)
685687
- ✅ NMF (non-negative matrix factorization)
686-
- ✅ Logistic regression
688+
- ⬜ Multinomial logistic regression
689+
- ⬜ Kernel PCA
690+
- ⬜ Kernel discriminant analysis
691+
- ⬜ t-SNE
692+
- ⬜ UMAP
687693
* ⬜ Distributions
688694
- ✅ Gaussian
689695
- ✅ Diagonal Gaussian
@@ -693,9 +699,13 @@ Matrix 3x3-Double
693699
- ✅ GMM (gaussian mixture model)
694700
- ✅ DBSCAN (density-based spatial clustering of applications with noise)
695701
- ⬜ OPTICS
702+
* ⬜ Classification
703+
- ⬜ Bayes classifier
704+
- ⬜ SVM (support vector machine)
696705
* ⬜ Time series
697-
- ⬜ HMM
698-
* 🚧 Audio signal processing
706+
- ⬜ DTW (dynamic time warping)
707+
- ⬜ HMM (hidden Markov model)
708+
* 🚧 Signal processing
699709
- ✅ FFT (fast Fourier transform)
700710
- ✅ Real FFT
701711
- ✅ STFT (short-time Fourier transform)

0 commit comments

Comments
 (0)