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

legendre polynomials and gaussian quadrature #313

Merged
merged 22 commits into from
Jun 30, 2021
Merged
Changes from 1 commit
Commits
Show all changes
22 commits
Select commit Hold shift + click to select a range
56822b5
- Added preliminary implementation for Legendre polynomials
hsnyder Feb 8, 2021
1a914dd
Update src/stdlib_quadrature_gauss.f90
hsnyder Feb 8, 2021
5937f90
Some changes in accorance with preliminary review comments
hsnyder Feb 8, 2021
124a2c5
merge
hsnyder Feb 8, 2021
e0add1a
changed stdlib_functions to stdlib_specialfunctions
hsnyder Feb 9, 2021
29ebe9c
added a comment regarding the initial guess for gauss-legendre quadra…
hsnyder Feb 10, 2021
7f91f1d
changed newton iteration loop indexing (stdlib_quadrature_gauss.f90) …
hsnyder Feb 10, 2021
6a1945f
Merge branch 'master' into master
hsnyder Apr 7, 2021
56b9423
Fix build for GCC 10.2
awvwgk Apr 10, 2021
a4cc366
Resolve merge conflicts and fix parallel Makefile build
awvwgk Apr 10, 2021
ce62e1f
Merge branch 'fortran-lang:master' into master
hsnyder Jun 2, 2021
551ec6d
added first tests for gaussian quadrature functions
hsnyder Jun 23, 2021
6f06f69
test implementation for gaussian quadrature functions
hsnyder Jun 23, 2021
274f542
added spec for gaussian quadrature functions
hsnyder Jun 23, 2021
f6ac41b
Added spec for special functions
hsnyder Jun 23, 2021
4dbd769
Update doc/specs/stdlib_quadrature.md
hsnyder Jun 24, 2021
259482a
Update doc/specs/stdlib_quadrature.md
hsnyder Jun 24, 2021
7225987
Update doc/specs/stdlib_specialfunctions.md
hsnyder Jun 24, 2021
6647e9b
Update doc/specs/stdlib_specialfunctions.md
hsnyder Jun 24, 2021
f3d43b3
made spec examples (guassian quadrature) standalone programs
hsnyder Jun 24, 2021
6f9d7e4
Update doc/specs/stdlib_quadrature.md
hsnyder Jun 24, 2021
5c53579
Update doc/specs/stdlib_quadrature.md
hsnyder Jun 24, 2021
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Update doc/specs/stdlib_quadrature.md
Co-authored-by: Sebastian Ehlert <[email protected]>
hsnyder and awvwgk authored Jun 24, 2021

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
commit 259482a7de8d89b992d28a0121708227a4726c7a
3 changes: 1 addition & 2 deletions doc/specs/stdlib_quadrature.md
Original file line number Diff line number Diff line change
@@ -247,7 +247,7 @@ Accuracy has been validated up to N=64 by comparing computed results to tablulat

### Syntax

`subroutine [[stdlib_quadrature(module):gauss_legendre_lobatto(interface)]](x, w [, interval])`
`subroutine [[stdlib_quadrature(module):gauss_legendre_lobatto(interface)]] (x, w[, interval])`

### Arguments

@@ -268,4 +268,3 @@ real(dp), dimension(N) :: x,w
call gauss_legendre_lobatto(x,w)
integral = sum(x**2 * w)
```