Naoki Saito

Results 20 issues of Naoki Saito

I am using 32bit version of ubuntu 16.04. LTS. When I was using atom 1.9.x with julia 0.4.6, everything was working. Now, I updated julia to 0.5.0 and atom 1.10.2....

Under Julia v1.0.1 with SingularIntegralEquations.jl v0.4.0, every time when I start a new Julia session and run ```using SingularIntegralEquations```, it forces to precompile the package even though there is no...

@staticfloat, I started using Julia v0.7.0 and just added Homebrew.jl v0.7.0. However, during building Homebrew.jl, I encountered the following error: ``` build Homebrew Building Homebrew → `~/.julia/packages/Homebrew/l8kUw/deps/build.log` ┌ Error: Error...

I just started using ```Graphs.jl```, but the definition of a distance matrix of a given graph ```g``` that is returned from the function ```distance_matrix(g, eweights)``` is quite unconventional and misleading....

@arsenal9971 : I tried to add the latest version of Shearlab.jl (v0.3.1) on Julia v1.1.0. But I couldn't due to the following error: ``` (v1.1) pkg> add Shearlab Resolving package...

Hector: it would be nice if Shearlab.jl is updated to work under Julia v1.0.x. Most of the common packages we rely on works now under Julia v1.0.1 except the plotlyjs...

I just added `PythonPlot.jl` on my Windows machine, and its precompilation never ends. On the other hand, on my Mac’s, I could precompile it without any problem. I use Julia...

The following line was working previously at version 5.4.3.. However, with v5.5.2, it fails to precompile: ``` function CUDA.cu(P::FFTW.rFFTWPlan) return plan_rfft(cu(zeros(real(eltype(P)), P.sz)), P.region) end CUDA.cu(P::CUFFT.rCuFFTPlan) = P ``` The above...

needs information

The `Select` function is quite useful for my application, and I have the following construct: ``` @bind fchoice Select(["Gaussian", "Sin^2(x)", "x^2(l-x)^2"]) ``` This generates a selection box exactly as I...

In my Pluto notebook file, I have the following line in the very beginning: ``` using Markdown, InteractiveUtils, PlutoUI, Plots, LaTeXStrings, LinearAlgebra, FFTW ``` When I first connect this notebook...