https://github.com/stla/hypergeomat
Hypergeometric function of a matrix argument (Koev & Edelman's algorithm)
https://github.com/stla/hypergeomat
hypergeometric-function julia r rcpp special-functions
Last synced: 10 months ago
JSON representation
Hypergeometric function of a matrix argument (Koev & Edelman's algorithm)
- Host: GitHub
- URL: https://github.com/stla/hypergeomat
- Owner: stla
- Created: 2019-09-14T13:28:58.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2024-07-23T18:35:39.000Z (over 1 year ago)
- Last Synced: 2025-04-07T21:07:32.400Z (10 months ago)
- Topics: hypergeometric-function, julia, r, rcpp, special-functions
- Language: R
- Homepage:
- Size: 97.7 KB
- Stars: 3
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.Rmd
Awesome Lists containing this project
README
---
title: "HypergeoMat"
output: github_document
---
[](https://github.com/stla/HypergeoMat/actions/workflows/R-CMD-check.yaml)
```{r setup, include=FALSE}
knitr::opts_chunk$set(echo = TRUE, collapse = TRUE)
```
```{r packages}
library(HypergeoMat)
library(microbenchmark)
```
```{r juliafun}
jhpq <- hypergeomPFQ_julia()
```
```{r benchmarks}
microbenchmark(
Rcpp = hypergeomPFQ(m = 30, a = c(1, 2, 3), b = c(4, 5), x = c(0.1, 0.2, 0.3)),
Julia = jhpq(m = 30, a = c(1, 2, 3), b = c(4, 5), x = c(0.1, 0.2, 0.3)),
times = 10
)
```