https://github.com/atelierarith/easyeigeninterface.jl

We don't say "Eigen is easy"

https://github.com/atelierarith/easyeigeninterface.jl

Science Score: 26.0%

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

  • CITATION.cff file
  • codemeta.json file
    Found codemeta.json file
  • .zenodo.json file
    Found .zenodo.json file
  • DOI references
  • Academic publication links
  • Committers with academic emails
  • Institutional organization owner
  • JOSS paper metadata
  • Scientific vocabulary similarity
    Low similarity (3.4%) to scientific vocabulary

Keywords

cxx eigen julia julialang
Last synced: 5 months ago · JSON representation

Repository

We don't say "Eigen is easy"

Basic Info
  • Host: GitHub
  • Owner: AtelierArith
  • Language: Julia
  • Default Branch: main
  • Homepage:
  • Size: 8.79 KB
Statistics
  • Stars: 1
  • Watchers: 1
  • Forks: 0
  • Open Issues: 0
  • Releases: 0
Topics
cxx eigen julia julialang
Created over 1 year ago · Last pushed over 1 year ago
Metadata Files
Readme

README.md

EasyEigenInterface.jl

This Julia package wraps some data types in Eigen, a C++ template library for linear algebra such as MatrixXd, VectorXd.

The design is strongly inspired by the work of @barche JuliaCon 2020 workshop on CxxWrap.jl.

Usage

```julia using EasyEigenInterface

x = Float64[1 2 3; 4 5 6] @assert MatrixXd(MatrixXd(x)) == MatrixXd(x) == x

m = MatrixXd(x) @assert rows(m) == 2 @assert cols(m) == 3 jlm = Matrix{Float64}(undef, 2, 3) jlm .= m @assert jlm == m

resize!(m, 3, 2) @assert rows(m) == 3 @assert cols(m) == 2 ```

I believe this may be helpful for those interested in using C++ libraries from Julia.

Owner

  • Name: AtelierArith
  • Login: AtelierArith
  • Kind: organization
  • Email: contact@atelier-arith.jp
  • Location: Japan

Enhance "Math meets Art"

GitHub Events

Total
Last Year

Committers

Last synced: 7 months ago

All Time
  • Total Commits: 6
  • Total Committers: 1
  • Avg Commits per committer: 6.0
  • Development Distribution Score (DDS): 0.0
Past Year
  • Commits: 5
  • Committers: 1
  • Avg Commits per committer: 5.0
  • Development Distribution Score (DDS): 0.0
Top Committers
Name Email Commits
Satoshi Terasaki t****h@g****m 6

Issues and Pull Requests

Last synced: 7 months ago

All Time
  • Total issues: 0
  • Total pull requests: 1
  • Average time to close issues: N/A
  • Average time to close pull requests: less than a minute
  • Total issue authors: 0
  • Total 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
Past Year
  • Issues: 0
  • Pull requests: 1
  • Average time to close issues: N/A
  • Average time to close pull requests: less than a minute
  • 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
  • terasakisatoshi (2)
Top Labels
Issue Labels
Pull Request Labels