Ander Gray

Results 23 issues of Ander Gray

I have a dynamics problem where I need to fetch data (e.g. using linear interpolation) within the derivative. Is such a thing possible? ``` Julia using ReachabilityAnalysis, Interpolations tspan =...

Does anyone know why this is happening? ```julia using IntervalArithmetic a = interval(Float16(1.0), Float16(3.0)) a + a ``` gives: ```Julia ERROR: MethodError: no method matching rounding_raw(::Type{Float16}) Closest candidates are: rounding_raw(::Type{BigFloat})...

If `x = [-1,1], y = [-1,1]` The program gives me `x^y => [0, Inf]`. But `(-1)^(-1) = -1`, which is lower than 0. Is my understanding wrong, but I...

Is it possible to specify a maximum number of bisections? I see there are some functions where you can specify `maxlevels`: ```Julia function find_roots(f::Function, a::Interval{T}, method::Function = newton; tolerance =...

v1.0

I can `add JuliaFEM`, but when I am `using JuliaFEM` I get the following error. Cheers! ```Julia [ Info: Precompiling JuliaFEM [f80590ac-b429-510a-8a99-e7c46989f22d] ERROR: LoadError: LoadError: Evaluation into the closed module...

Hi, I'm trying to make a `Cell` with only one `Region`, and I'm having some trouble. Cell takes an array of Regions and a Julia `Expr`. No trouble with the...

Hi, I'm using sandy to generate some random samples of Fe56 from TENDL 2017, and it's giving me some non-gaussian samples. ![Fe56_(n,absorption)_294K_500](https://user-images.githubusercontent.com/38252522/106822675-6ebdb580-6677-11eb-9196-953968f5422d.png) ![Fe56_(n,total)_294K_500](https://user-images.githubusercontent.com/38252522/106822683-72e9d300-6677-11eb-8d89-ad853224056a.png) Would you have any clues as to...

https://um-bridge-benchmarks.readthedocs.io/en/docs/

feature

Hi, great package! Is it possible to run traced code like `IRTools.func` ? Sometimes I get an evaluation, but sometimes Julia just crashes: ```Julia function pow(x, n) r = 1...