clausen

Clausen functions in rust

https://github.com/expander/clausen.rs

Science Score: 57.0%

This score indicates how likely this project is to be science-related based on various indicators:

  • CITATION.cff file
    Found CITATION.cff file
  • codemeta.json file
    Found codemeta.json file
  • .zenodo.json file
    Found .zenodo.json file
  • DOI references
    Found 4 DOI reference(s) in README
  • Academic publication links
  • Academic email domains
  • Institutional organization owner
  • JOSS paper metadata
  • Scientific vocabulary similarity
    Low similarity (5.9%) to scientific vocabulary

Keywords

math rust special-functions
Last synced: 6 months ago · JSON representation ·

Repository

Clausen functions in rust

Basic Info
  • Host: GitHub
  • Owner: Expander
  • Language: Rust
  • Default Branch: main
  • Homepage:
  • Size: 585 KB
Statistics
  • Stars: 1
  • Watchers: 2
  • Forks: 0
  • Open Issues: 0
  • Releases: 2
Topics
math rust special-functions
Created over 2 years ago · Last pushed over 1 year ago
Metadata Files
Readme Citation

README.md

clausen

Build Status Documentation Coverage Status

The clausen package provides Rust implementations of the Standard Clausen functions and Glaisher-Clausen functions of integer order for real or complex arguments.

The clausen package depends on the num and the polylog crates.

Example

```rust use clausen::{Cl, Sl}; use num::complex::Complex;

let x = 1.0; let z = Complex::new(1.0, 1.0); let n = 2;

println!("Cl{}({}) = {}", n, x, x.cl(n)); // Cln(x) println!("Cl{}({}) = {}", n, z, z.cl(n)); // Cln(z) println!("Sl{}({}) = {}", n, x, x.sl(n)); // Sln(x) println!("Sl{}({}) = {}", n, z, z.sl(n)); // Sln(z) ```

Notes

The implementation of the Standard Clausen function x.cl(n) for real x and positive n follows the approach presented in [Jiming Wu, Xiaoping Zhang, Dongjie Liu, "An efficient calculation of the Clausen functions Cl_n(θ)(n >= 2)", Bit Numer Math 50, 193-206 (2010) https://doi.org/10.1007/s10543-009-0246-8].

Copying

clausen is licenced under the GNU Lesser General Public License (GNU LGPL) version 3.

Owner

  • Name: Alexander Voigt
  • Login: Expander
  • Kind: user
  • Location: Flensburg
  • Company: Hochschule Flensburg

since 2019 lecturer at HS Flensburg, 2016-2019 Researcher at RWTH Aachen University, 2014-2016 Researcher at DESY Hamburg, 2010-2014 Researcher at TU Dresden

Citation (CITATION.cff)

cff-version: 1.2.0
message: "If you use this software, please cite it as below."
authors:
- family-names: "Voigt"
  given-names: "Alexander"
  orcid: "https://orcid.org/0000-0001-8963-6512"
title: "clausen"
version: 1.0.1
date-released: 2024-03-06
url: "https://github.com/Expander/clausen.rs"
license: LGPL-3.0-only

GitHub Events

Total
  • Delete event: 1
  • Push event: 3
  • Pull request event: 2
  • Create event: 1
Last Year
  • Delete event: 1
  • Push event: 3
  • Pull request event: 2
  • Create event: 1

Issues and Pull Requests

Last synced: 7 months ago

All Time
  • Total issues: 0
  • Total pull requests: 2
  • Average time to close issues: N/A
  • Average time to close pull requests: about 1 hour
  • Total issue authors: 0
  • Total pull request authors: 1
  • Average comments per issue: 0
  • Average comments per pull request: 0.0
  • Merged pull requests: 2
  • Bot issues: 0
  • Bot pull requests: 0
Past Year
  • Issues: 0
  • Pull requests: 1
  • Average time to close issues: N/A
  • Average time to close pull requests: about 2 hours
  • Issue authors: 0
  • Pull request authors: 1
  • Average comments per issue: 0
  • Average comments per pull request: 0.0
  • Merged pull requests: 1
  • Bot issues: 0
  • Bot pull requests: 0
Top Authors
Issue Authors
Pull Request Authors
  • Expander (4)
Top Labels
Issue Labels
Pull Request Labels
enhancement (2)

Packages

  • Total packages: 1
  • Total downloads:
    • cargo 3,003 total
  • Total dependent packages: 0
  • Total dependent repositories: 0
  • Total versions: 2
  • Total maintainers: 1
crates.io: clausen

Rust implementation of Clausen functions.

  • Versions: 2
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 3,003 Total
Rankings
Dependent repos count: 30.8%
Dependent packages count: 36.1%
Average: 55.1%
Downloads: 98.4%
Maintainers (1)
Last synced: 6 months ago

Dependencies

.github/workflows/build.yml actions
  • actions-rs/cargo v1 composite
  • actions-rs/toolchain v1 composite
  • actions/checkout v2 composite
Cargo.toml cargo
.github/workflows/coverage.yml actions
  • actions-rs/toolchain v1 composite
  • actions/checkout v2 composite
  • coverallsapp/github-action v2 composite