Skip to content

Commit 9ccf8d1

Browse files
authored
Add files via upload
1 parent 8efe95d commit 9ccf8d1

File tree

6 files changed

+15
-7
lines changed

6 files changed

+15
-7
lines changed

DESCRIPTION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Package: SMFilter
22
Title: Filtering Algorithms for the State Space Model on the Stiefel Manifold
3-
Version: 1.0.0
3+
Version: 1.0.1
44
Authors@R: person("Yukai", "Yang", email = "yukai.yang@statistik.uu.se",role = c("aut", "cre"))
55
Description: Provides the filtering algorithms for the state space model on the Stiefel manifold.
66
Depends: R (>= 3.0.0)

NEWS.Rmd

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,10 @@ knitr::opts_chunk$set(
1414
)
1515
```
1616

17+
# New Featurs in SMFilter 1.0.1
18+
19+
* Remove the location in version() function.
20+
1721
# New Featurs in SMFilter 1.0.0
1822

1923
* All the functions

NEWS.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,9 @@
11
<!-- README.md is generated from README.Rmd. Please edit that file -->
2+
New Featurs in SMFilter 1.0.1
3+
=============================
4+
5+
- Remove the location in version() function.
6+
27
New Featurs in SMFilter 1.0.0
38
=============================
49

R/utils.R

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,7 @@
22
## utility functions
33
#################################################################################
44

5-
vnum = "1.0.0"
6-
location = "GitHub"
5+
vnum = "1.0.1"
76

87
# simple cat
98
cat0 <- function(...)
@@ -22,7 +21,7 @@ cat0 <- function(...)
2221
#'
2322
#' @export
2423
version <- function(){
25-
cat0("SMFilter version ", vnum, " (Red Filter) from ",location)
24+
cat0("SMFilter version ", vnum, " (Red Filter)")
2625
}
2726

2827
# exponential trace

README.Rmd

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ library(tidyverse)
1616
library(SMFilter)
1717
```
1818

19-
# SMFilter version 1.0.0 (Red Filter)
19+
# SMFilter version 1.0.1 (Red Filter)
2020

2121

2222
The package implements the filtering algorithms for the state-space models on the Stiefel manifold. It also implements sampling algorithms for uniform, vector Langevin-Bingham and matrix Langevin-Bingham distributions on the Stiefel manifold.

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<!-- README.md is generated from README.Rmd. Please edit that file -->
2-
SMFilter version 1.0.0 (Red Filter)
2+
SMFilter version 1.0.1 (Red Filter)
33
===================================
44

55
The package implements the filtering algorithms for the state-space models on the Stiefel manifold. It also implements sampling algorithms for uniform, vector Langevin-Bingham and matrix Langevin-Bingham distributions on the Stiefel manifold.
@@ -28,7 +28,7 @@ You can first check the information and the current version number by running
2828

2929
``` r
3030
version()
31-
#> SMFilter version 1.0.0 (Red Filter) from GitHub
31+
#> SMFilter version 1.0.1 (Red Filter)
3232
```
3333

3434
Then you can take a look at all the available functions and data in the package

0 commit comments

Comments
 (0)