Isaac Wheeler
Isaac Wheeler
Here is an MWE: ```julia using DifferentialEquations using Unitful function ode_system!(du, u, p, t) R0, τ, Tref = p T = u[1]*u"K" dTdt = -T / (1 + R0*(Tref -...
MWE: ```julia using LeastSquaresOptim func(x) = sum(x.^2) optimize(func, [1.0]) ``` yields ``` Results of Optimization Algorithm * Algorithm: Dogleg * Minimizer: [0.0004882886969070914] * Sum of squares at Minimum: 0.000000 *...
## Description Essentially identical to #5095 , but made against the `master` branch so that I'm not waiting for Plots v2--folder structures are different enough that it made sense to...
## Description In an attempt to fix #4750 and #4822 , following the suggestion in https://github.com/JuliaPlots/Plots.jl/issues/4822#issuecomment-1732512054 to move units from the label (so a string) to an actual axis attribute....
It would be lovely to have an extension like the existing Unitful extension for [DynamicQuantities.jl](https://symbolicml.org/DynamicQuantities.jl/dev/#), and I suspect that I could achieve that myself by copying the Unitful extension with...
## Details 1. On the current v2 branch, to load the Unitful extension (and therefore recipes for Unitful types), UnitfulLatexify has to be manually imported: https://github.com/JuliaPlots/Plots.jl/blob/4d289ba9c9dc1cd09a0abd942e2b201802fc2d93/PlotsBase/Project.toml#L75 (By importing UnitfulLatexify, Latexify...
**Describe the bug 🐞** Jacobians across an ODE (or DAE) solve, where the parameters are provided as a struct, work only if the struct is parametric and has a defined...
**Describe the bug 🐞** Summarizing what I learned in #2594 and #2698: - Direct construction of an `ODEFunction`, as is necessary to specify a mass matrix, defaults to `FullSpecialize`, where...
**Describe the bug 🐞** DAE solutions with callbacks work, but they are apparently type unstable, according to `@code_warntype`. ODE solutions with callbacks and DAE solutions without callbacks without are both...
**Describe the bug 🐞** On master, with e.g. ```julia using OrdinaryDiffEqRosenbrock using OrdinaryDiffEqNonlinearSolve ``` at least the symbol `AutoForwardDiff` is not exported, which is part of the API for choosing...