Skip to content

Commit abb5837

Browse files
committed
Ready for CRAN
1 parent 50d41ff commit abb5837

3 files changed

Lines changed: 11 additions & 3 deletions

File tree

DESCRIPTION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
Package: ravetools
22
Type: Package
33
Title: Signal and Image Processing Toolbox for Analyzing Intracranial Electroencephalography Data
4-
Version: 0.2.0.9005
4+
Version: 0.2.1
55
Language: en-US
66
Authors@R: c(
77
person("Zhengjia", "Wang", email = "dipterix.wang@gmail.com", role = c("aut", "cre")),

NEWS.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,11 @@
1+
# ravetools 0.2.1
2+
3+
* Using `std::nearbyint` instead `std::round` to round numbers to comply to `IEC-60559` standard that half numbers round to nearest even integers
4+
* Implemented low-level `3D` volume sampling in `C++`: `resample_3d_volume`
5+
* Exported `gsignal::resample` (however, some edits might be needed in the future to produce the same results as `Matlab`)
6+
* Supported converting `ieegio` surface geometries to `mesh3d` to be used in `VCG` related functions
7+
* Added `K-D` tree search to find closest points among two point clouds
8+
19
# ravetools 0.2.0
210

311
* Added `vcg_raycaster` to find intersection of rays and given mesh object.

tests/testthat/test-resample3D.R

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
test_that("resample3D", {
2-
arrayDim = rev(c(256, 128, 16))
3-
fromArray = array(rnorm(prod(arrayDim)), rev(arrayDim) + 1)
2+
arrayDim <- rev(c(256, 128, 16))
3+
fromArray <- array(rnorm(prod(arrayDim)), rev(arrayDim) + 1)
44
oldVoxToWorld <- matrix(nrow = 4, byrow = TRUE, c(
55
1.5, 0, 0.8, -200,
66
0.01, 0, -1, 10,

0 commit comments

Comments
 (0)