Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/ianhi/sage_utilities
Collection of things to improve sagemath
https://github.com/ianhi/sage_utilities
Last synced: 12 days ago
JSON representation
Collection of things to improve sagemath
- Host: GitHub
- URL: https://github.com/ianhi/sage_utilities
- Owner: ianhi
- Created: 2015-10-30T21:00:44.000Z (about 9 years ago)
- Default Branch: master
- Last Pushed: 2015-11-21T07:05:08.000Z (about 9 years ago)
- Last Synced: 2024-11-12T10:48:18.471Z (about 2 months ago)
- Language: Python
- Homepage:
- Size: 4.88 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Sage_Utilities
Collection of things that might improve [sage](http://www.sagemath.org/).## newIntegral.py
Supplies two functions:sym_or_num_Integral()
- Written in response to [this](http://ask.sagemath.org/question/30329/symbolic-and-numeric-double-integration-method/) ask.sagemath question
- Provides an integral function that returns a symbolic solution to an integral if a closed form exists and a numeric solution otherwise
- Accepts multiple variables of integration and was precursor to newIntegral()newIntegral()
- should provide a solution to trac ticket [#2787](http://trac.sagemath.org/ticket/2787)
- allows calculation of multiple integral with more natural syntax of integral(x^2,(x,2)) or integral(x^2,x,y,y)