-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathTensor.Algorithm.fsproj
More file actions
42 lines (35 loc) · 1.22 KB
/
Copy pathTensor.Algorithm.fsproj
File metadata and controls
42 lines (35 loc) · 1.22 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
<Project Sdk="Microsoft.NET.Sdk">
<Import Project="../../Common.targets" />
<PropertyGroup>
<PackageId>Tensor.Algorithm</PackageId>
<title>Algorithms building on Tensor</title>
<summary></summary>
<description>
Data types:
- arbitrary precision rational numbers
Matrix algebra (integer, rational):
- Row echelon form
- Smith normal form
- Kernel, cokernel and (pseudo-)inverse
Matrix decomposition (floating point):
- Principal component analysis (PCA)
- ZCA whitening
Misc:
- Bezout's identity
- Loading of NumPy's .npy and .npz files.
</description>
<PackageTags>rational row echelon smith kernel cokernel inverse pca zca Bezout npy npz</PackageTags>
<PackageProjectUrl>http://www.deepml.net/Tensor</PackageProjectUrl>
<Platforms>x64</Platforms>
</PropertyGroup>
<ItemGroup>
<Compile Include="BigIntegerExtensions.fs" />
<Compile Include="Rat.fs" />
<Compile Include="Decomposition.fs" />
<Compile Include="LinAlg.fs" />
<Compile Include="NumpyFiles.fs" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\Tensor\Tensor.fsproj" />
</ItemGroup>
</Project>