Skip to content

Commit

Permalink
Updated NEWS.
Browse files Browse the repository at this point in the history
  • Loading branch information
krivit committed Dec 18, 2023
1 parent bd72a5d commit 99cea95
Show file tree
Hide file tree
Showing 3 changed files with 21 additions and 3 deletions.
2 changes: 1 addition & 1 deletion DESCRIPTION
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
Package: statnet.common
Version: 4.10.0-438
Version: 4.10.0-439
Date: 2023-12-18
Title: Common R Scripts and Utilities Used by the Statnet Project Software
Authors@R: c(
Expand Down
16 changes: 14 additions & 2 deletions NEWS
Original file line number Diff line number Diff line change
@@ -1,3 +1,16 @@
statnet.common 4.10.0
=====================

- `as.cntrol.list.list()` and hence `snctrl()` no longer clobbers
nested controls, e.g., `control.ergm(SAN=control.san(...),...)`.
- To facilitate support for earlier versions of R, avoid using the
built-in pipe (`|>`) for now.
- New linear algebra utilities: `ginv_eigen()`, which performs
generalised inverse via eigendecomposition rather than SVD, to be
used by `sginv()` if `snnd=TRUE`; and `xTAx_eigen()` and
`xTAx_seigen()` to evaluate the inverse quadratic form using
eigendecomposition.

statnet.common 4.9.0
====================

Expand All @@ -6,7 +19,6 @@ New utilities

- A new function,`lweighted.cov()`, to compute weighted covariance
between two matrices or vectors.

- New linear algebra utilities, `is.SPD()`, `sandwich_solve()`,
`sandwich_ssolve()`, `sginv()`, `snearPD()`, `srcond()`, `ssolve()`,
`xAxT()`, `xTAx()`, `xTAx_qrsolve()`, `xTAx_qrssolve()`,
Expand All @@ -17,7 +29,7 @@ Bug fixes
---------

- In `handle.controls()`, arguments that are `match.arg()`-ed are now
evaluated in the correct frame.
evaluated in the correct frame.

statnet.common 4.8.0
====================
Expand Down
6 changes: 6 additions & 0 deletions NEWS.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
# statnet.common 4.10.0

* `as.cntrol.list.list()` and hence `snctrl()` no longer clobbers nested controls, e.g., `control.ergm(SAN=control.san(...),...)`.
* To facilitate support for earlier versions of R, avoid using the built-in pipe (`|>`) for now.
* New linear algebra utilities: `ginv_eigen()`, which performs generalised inverse via eigendecomposition rather than SVD, to be used by `sginv()` if `snnd=TRUE`; and `xTAx_eigen()` and `xTAx_seigen()` to evaluate the inverse quadratic form using eigendecomposition.

# statnet.common 4.9.0

## New utilities
Expand Down

0 comments on commit 99cea95

Please sign in to comment.