Michael Pusterhofer
Michael Pusterhofer
A common plot is an [Arrhenius plot](https://stackoverflow.com/questions/53259023/how-to-do-an-arrhenius-plot-using-excel-vba-aka-how-to-do-a-reciprocal-x-axis). Other plots that might be of interest are plots with (multiple) y axis on the left and the right hand side or a...
I'm using SSHProxyEngineSetLauncher to start an ipcluster on a remote machine which uses condor. When stopping SSHProxyEngineSetLauncher condor_q still shows ipengines in the queue. I think this is because SSHProxyEngineSetLauncher...
Would this be the place where one can add the Fermi-Dirac-Integral? https://de.wikipedia.org/wiki/Fermi-Dirac-Integral (contains approximation) https://en.wikipedia.org/wiki/Complete_Fermi%E2%80%93Dirac_integral It is a quite useful function in solid state physics.
Is it possible to assign a constant using the @tensor macro? Example: ``` C=zeros(3,3,3) @tensor begin C[i,i,i] = 6 end ```
This widget wraps an existing widget to add CSS styles via JavaScript. Features: * Redirect the value to a wrapper div element * Add widget.style lines based on the provided...
I tried to run a file containing the following ``` println("Hello World") import Pkg Pkg.status() ``` The output for DaemonMode (async=false; using runargs) looks like this: ``` StatusHello World `/..../Project.toml`...
The output to stdout sometimes returns a broken pipe error. I also realized that redirect_stdout might not be a good idea to redirect in an concurrent environment as they influence...
Is it possible to return the correct exit code when using runfile()? Maybe overwriting exit with a return would enable to exit correctly without killing the server. ``` exit(x) =...
At the moment those two channels are pooled into the output buffer. When calling an external tool sometimes it is useful to have split output channels.
Is there a implemented algorithm which is equal to [Numerov's algorithm](https://en.wikipedia.org/wiki/Numerov%27s_method ) ? Where should i look to implement it?