ay111

Results 8 issues of ay111

I want to request a GUI like quick tabular, quick array to generate a custom bibliographic style in texstudio which can be stored and used in documents. More power to...

enhancement

I noticed that some examples in the documentation of ApproxFun.jl are not working in Julia 1.7.2. Some of the examples with Fourier returned FFTW cannot create plan in Julia 1.7.2....

I want to request for a working example on how to use this pix2tex in Julia.

PyCall and PyPlot are crashing in REPL /terminal of Juliaup (Julia 1.10.2) and Vscode in windows 11. Here is the error generated while trying to plot sin(x). using PyCall,PyPlot pygui(true)...

See the Julia session below: julia> using FractionalDiffEq, Plots julia> function sys!(du, u, p, t) du[1] = -0.05*u[2] - 0.05*u[3] + 0.01*tanh(u[2]) du[2] = 0.05*u[1] + 0.02*u[2] + 0.01*tanh(u[1]) du[3]...

Examples on the FractionalCalculus.jl home page are returning functions not defined in Julia 1.9.2. For instance, julia> fracdiff(x->x, 0.5, 1, 0.0001, RLDiffL1()) ERROR: UndefVarError: `RLDiffL1` not defined Stacktrace: [1] top-level...

Plotting multiple figures with subplots command only display the last figure in both PythonPlot.jl and PyPlot.jl. Kindly run the program below. using PythonPlot # Pyplot pygui(true) x = LinRange(0, 2*pi,...