Kuan Xu

Results 5 issues of Kuan Xu

``` f = x->cos(1.9x)*exp(-3x/2); F = Fun(f, Laguerre()) ncoefficients(F) ``` This is a FUN of length 128. Bump up the frequency a little from 1.9 to 2. The ctor then...

``` julia> @enter [1; 2] typeof(f) = Int64 1 Tuple{Int64} ERROR: no method found for the specified argument types Stacktrace: [1] which(::Any, ::Any) at ./reflection.jl:823 [2] #determine_method_for_expr#23(::Bool, ::Function, ::Expr) at...

It'll be great if the source lines above and below the current one can be listed by a command like `l` or `l [n]`, where `[n]` specifies the number of...

enhancement

Currently, to ‘enter’ a line to begin debugging, one has to 1. run the file once first, 2. then add the `@enter` macro manually at the beginning of the line...

enhancement

``` function EvaluateAFunction(f) return f(2); end x = EvaluateAFunction(x->sin(x)) @enter EvaluateAFunction(x->sin(x)) ``` Running this code snippet in JuliaPro returns an error of `AssertionError: arg isa Expr && arg.head == :call`....

needs test