How to integrate an interval-algorithm-based nonlinear function (for example, d(F(X))/dX= a/(1+cX), where a=[1, 2], c=[2, 3] are interval constants) using the "IntervalArithmetic" package in Julia? Could you please give an example? Or could you please provide a relevant document? F(X) will come out as an interval with bounds, F(X)=[p, q].
How to do interval algorithms based integration using "IntervalArithmetic" package in Julia?
137 Views Asked by Kanishk Sharma At
1
There are 1 best solutions below
Related Questions in JULIA
- Julia parallel programming - Making existing function available to all workers
- Can I use a subtype of a function parameter in the function definition?
- Matching of array elements in Julia
- Julia: Enforce constraints on objects in a container?
- Why 2 ^ 3 ^ 4 = 0 in Julia?
- Packing int and float to byte arrays in Julia
- Julia: How do I create a macro that returns its argument?
- Can I use Julia to program my GPU & CPU?
- Julia: Calling GSL functions
- Append error in python
- Memory allocation in a fixed point algorithm
- Using Julia, what's the accepted way to deal with data stored in external databases?
- Can I make a Julia package containing multiple modules that can be independently imported?
- Is there a way to plot graph in julia while executing loops?
- How do I create a recursive typealias in julia?
Related Questions in INTEGRATION
- excel datasource returning nulls with sql command
- Debugging a 404 error for an existing page
- Protractor: Multiple browser instance tests fail where Single Instance tests pass
- how to share a Photo Or link on facebook wall without using FBSDKShareDialog from native ios app
- Spring Security Struts 1.3 integration without extending GrandAuthority and UserDetails
- how to examine contents of database during or after rails integration test
- How to integrate Google Bigquery with c# console application
- Integration of a function which is numerical solution of differential equation
- Apache Camel web service using spring
- Creating buffer/ processing multiple files SSIS
- Why ClearCase Explorer is that ClearQuest Web is not supported UCM integration?
- How can i separate WHMCS css and my own HTML css code
- Consuming Salesforce Restful webservice in Mule
- API Integration osclass
- Qlik Sense Engine with Java application
Related Questions in JULIA-PLOTS
- Got two plots when using quiver to draw arrows in Julia
- How to keep all the subplots have the same Y axis range in julia?
- Julia Plots Package does not download and crashes julia
- Cannot convert ThreeBodyTB.CrystalMod.crystal{Float64} to series data for plotting
- Plotting an float array in julia
- Plots.jl: Change formating of logscale ticks to normal formatting
- julia plot not working with float64 vectors
- Size and Colour in Julia Scatter Plot
- How to determine which fonts are available and use them in Julia plots?
- Can't compile Plots
- Julia: ImplictPlots in a loop: setting colors
- I got a message "using Plots" in Julia and I do no how to resolve it
- Julia pkg> add results in "no known versions" errors for "Flux" and "Plots"
- Savefig closes session
- Compute and plot central credible and highest posterior density intervals for distributions in Distributions.jl
Related Questions in INTERVAL-ARITHMETIC
- Exact solutions for lib(ic)
- How to do interval algorithms based integration using "IntervalArithmetic" package in Julia?
- How to reduce runtime of Julia code to find roots using "IntervalRootFinding.jl" package?
- How to find a Jacobian matrix of a vector function in Julia using "IntervalArithmetic.jl" package?
- Rounding Modes in JavaScript
- Storing elements in a Vector using "for" loop in Julia
- How to draw 3D plot of interval valued function using "IntervalArithmetic" package in Julia?
- A good uncertainty (interval) arithmetic library?
- C++ algorithm for division between 2 signed integer intervals
- Calculate the duration of overlapping time ranges using pandas
- Iterate through ranges and return those not in any range?
- arithmetic library for tracking worst case error
- Trigonometric Functions: Argument reduction
- Conservative interval arithmetic library in Javascript
- Floating and interval arithmetic in Isabelle
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
Just numerical integration? As long as the integrating code is written in Julia (otherwise i suspect it will struggle to understand IntervalArithmetic) and there isn't some snag about how it should interpret tolerances, then it should just work, more or less how you might expect it to handle e.g. complex numbers.
and combined with e.g.
gives
([0.462098, 1.09862], [0, 0.636515])(so.. i guess here the interpretation is that the error is in the interval 0 to 0.636515 :))Just as a sanity check, lets just go with a good old trapezodial rule.
again gives us the expected interval
[0.462098, 1.09862]