Skip to content

Commit

Permalink
Prepare for release.
Browse files Browse the repository at this point in the history
  • Loading branch information
sinshu committed Aug 16, 2024
1 parent b1fe789 commit fbdddab
Show file tree
Hide file tree
Showing 3 changed files with 22 additions and 7 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
# v1.0.0

* Improved DBSCAN implementation.
* Added linear algebra.

# v0.10.8

* Added DBSCAN.
Expand Down
2 changes: 1 addition & 1 deletion NumFlat/NumFlat.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
<GenerateDocumentationFile>True</GenerateDocumentationFile>
<GeneratePackageOnBuild>True</GeneratePackageOnBuild>
<Title>NumFlat</Title>
<Version>0.10.8</Version>
<Version>1.0.0</Version>
<Authors>Nobuaki Tanaka</Authors>
<Description>A numerical computation library for C#</Description>
<PackageProjectUrl>https://github.com/sinshu/numflat</PackageProjectUrl>
Expand Down
22 changes: 16 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -493,11 +493,12 @@ Mat.Add(x, y, destination);
### Multivariate analyses
The `NumFlat.MultivariateAnalyses` namespace provides functionality related to multivariate analysis.
It currently supports the following methods, with plans to add more methods in the future.
* Linear regression
* Logistic regression
* PCA (principal component analysis)
* LDA (linear discriminant analysis)
* ICA (independent component analysis)
* NMF (non-negative matrix factorization)
* Logistic regression
#### Code
```cs
using NumFlat.MultivariateAnalyses;
Expand Down Expand Up @@ -677,13 +678,18 @@ Matrix 3x3-Double
- ✅ Weighted sum, mean, variance, covariance for vectors
- ✅ Weighted sum, mean, variance for matrices
- ✅ Higher-order statistics
* 🚧 Multivariate analysis
- ⬜ Linear regression
* ⬜ Multivariate analysis
- ✅ Linear regression
- ✅ Logistic regression
- ✅ PCA (principal component analysis)
- ✅ LDA (linear discriminant analysis)
- ✅ ICA (independent component analysis)
- ✅ NMF (non-negative matrix factorization)
- ✅ Logistic regression
- ⬜ Multinomial logistic regression
- ⬜ Kernel PCA
- ⬜ Kernel discriminant analysis
- ⬜ t-SNE
- ⬜ UMAP
* ⬜ Distributions
- ✅ Gaussian
- ✅ Diagonal Gaussian
Expand All @@ -693,9 +699,13 @@ Matrix 3x3-Double
- ✅ GMM (gaussian mixture model)
- ✅ DBSCAN (density-based spatial clustering of applications with noise)
- ⬜ OPTICS
* ⬜ Classification
- ⬜ Bayes classifier
- ⬜ SVM (support vector machine)
* ⬜ Time series
- ⬜ HMM
* 🚧 Audio signal processing
- ⬜ DTW (dynamic time warping)
- ⬜ HMM (hidden Markov model)
* 🚧 Signal processing
- ✅ FFT (fast Fourier transform)
- ✅ Real FFT
- ✅ STFT (short-time Fourier transform)
Expand Down

0 comments on commit fbdddab

Please sign in to comment.