djsegal

Results 34 comments of djsegal

@booleanbetrayal any word on this? I can look into doing a rebase if you think it's worth it.

I think this is valuable enough to keep open

I've been following this chain of events for some time: + https://github.com/JuliaPy/PyInteract.jl/issues/1 + https://github.com/JuliaPy/PyCall.jl/issues/89 And am still very interested in the prospect of using widgets at the ground level. Let...

This is probably an ordering problem! + `max(0, log(x))` --> `DomainError` + `max(log(x), 0)` --> `Max(0, log(x))`

This is a sympy issue (not SymPy.jl). Therefore, closing this

Is there a way I could decrease the scope of the problem to make it more manageable?

@sglyon one question I had was, why do I need: ``` if abs(rho) > 1 cur_vars = [ 0 , 0 , 0 ] cur_F = [ 0 , 0...

Yes, I think one of the problems is I have this line of code: ``` cur_n_profile = ( 1 - rho ^ 2 ) ^ 1/2 ``` which prevents real...

**update:** it's nothing to write home about, but this was my solution to the problem: ``` julia cur_solution = nothing for cur_attempt in 1:20 did_work = true try cur_initial_values =...