You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: CHANGELOG.md
+21-9Lines changed: 21 additions & 9 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,5 +1,20 @@
1
1
# Changelog
2
2
3
+
## [0.2.2] -- 2018-12-13
4
+
5
+
### Added
6
+
7
+
- The routine fnft_nsev_inverse_XI now raises an error if D<2 to avoid division by zero
8
+
- A .gitattribute file to correct incorrect language detection on GitHub
9
+
10
+
### Fixed
11
+
12
+
- CMake failed under Windows due to an incomplete install command in CMakeLists.txt
13
+
- Removed incorrect "-SHELL=cmd" parameter for CMake from Windows build instructions
14
+
- Documentation for fnft_nsev_inverse now states that D should be a positive power of two
15
+
- Documentation for fnft_nsev and fnft_nsep now states that passing *K_ptr==0 and *M_ptr==0 is not sufficient in order to completely skip the computation of the corresponding spectra
16
+
- Reformatted changelog for 0.1.1
17
+
3
18
## [0.2.1] -- 2018-09-28
4
19
5
20
### Fixed
@@ -37,14 +52,11 @@
37
52
38
53
## [0.1.1] -- 2018-05-14
39
54
40
-
### Added
55
+
### Fixed
41
56
42
57
- Mex files now compile also with Matlab R2018a
43
-
44
-
### Changed
45
-
46
-
- Fixed: Several potential memory violations in fnft_nsev, poly_chirpz and nsev_testcases
47
-
- Fixed: Some return codes in fnft_nsep had not been checked
48
-
- Fixed: misc_merge did not work correctly for empty input vectors
49
-
- Fixed: The continuous spectrum in mex_fnft_nsev_example.m was plotted over t, not xi
50
-
- Fixed: A superfluous parameter kappa was given in the documentation of mex_fnft_kdvv
58
+
- Several potential memory violations in fnft_nsev, poly_chirpz and nsev_testcases
59
+
- Some return codes in fnft_nsep had not been checked
60
+
- misc_merge did not work correctly for empty input vectors
61
+
- The continuous spectrum in mex_fnft_nsev_example.m was plotted over t, not xi
62
+
- A superfluous parameter kappa was given in the documentation of mex_fnft_kdvv
Copy file name to clipboardExpand all lines: INSTALL.md
+3-4Lines changed: 3 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -66,7 +66,7 @@ To uninstall FNFT, run the commands
66
66
67
67
## Building under Windows
68
68
69
-
The following instructions have been tested under Windows 7/8/10. A simple way to build FNFT is via the [Scoop](http://scoop.sh/) packet manager. Make sure that [PowerShell 3](https://docs.microsoft.com/en-us/powershell/scripting/setup/installing-windows-powershell?view=powershell-6) is available. Run the command
69
+
The following instructions have been tested under Windows 7/8/10. A simple way to build FNFT is via the [Scoop](http://scoop.sh/) packet manager. Make sure that [PowerShell 3](https://docs.microsoft.com/en-us/powershell/scripting/setup/installing-windows-powershell?view=powershell-6) is available. (We recommend _not_ to run the 32 bit version "PowerShell (x86)" on a 64 bit machine unless there are specific reasons for it.) Run the command
70
70
71
71
powershell.exe -ExecutionPolicy RemoteSigned
72
72
@@ -90,7 +90,7 @@ Create a build directory and run cmake there
90
90
91
91
mkdir build
92
92
cd build
93
-
cmake .. -SHELL=cmd -G"MinGW Makefiles"
93
+
cmake .. -G"MinGW Makefiles"
94
94
95
95
Build the library:
96
96
@@ -100,8 +100,7 @@ Run the tests:
100
100
101
101
mingw32-make -j4 test
102
102
103
-
_Note:_ If MATLAB is installed, the MATLAB interface should have been built
104
-
automatically. It can be found in the 'matlab' folder. Please copy the libfnft... dll file and the mex_... mexw... files manually from the 'build' into the 'matlab' folder.
103
+
_Note:_ If MATLAB is installed, the MATLAB interface should have been built automatically. It can be found in the 'matlab' folder. Please copy the libfnft... dll file and the mex_... mexw... files manually from the 'build' into the 'matlab' folder.
0 commit comments