Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Convenience functions for element-wise operations #2

Open
lp2 opened this issue Nov 3, 2010 · 0 comments
Open

Convenience functions for element-wise operations #2

lp2 opened this issue Nov 3, 2010 · 0 comments

Comments

@lp2
Copy link
Collaborator

lp2 commented Nov 3, 2010

Eigen does not allow syntax such as
double a = lngamma(b).sum();
where b is a matrix. Instead, one has to write a for loop:
double a = 0;
for (int i = 0; ...) {a += lngamma(b(i));}

It would be useful to have convenience functions for
gamma
log
lngamma
psi
exp

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant