python (12.9k questions)
javascript (9.2k questions)
reactjs (4.7k questions)
java (4.2k questions)
java (4.2k questions)
c# (3.5k questions)
c# (3.5k questions)
html (3.3k questions)
Explicit (Forward) and Implicit (Backward) Euler Methods in Python
I am trying to implement both the explicit and implicit Euler methods to approximate a solution for the following ODE:
dx/dt = -kx, where k = cos(2 pi t), and x(0) = 1
Euler's methods use finite diffe...
Savannah
Votes: 0
Answers: 2
The same program written in Jupyter notebook with Pyhon 3.7 doesn't work somewhere else
Imagine the situation like below. There must be simple explanation.
I have a program written in Jupyter notebook and use Python 3.7. There is no errors while executing the program and works on two PC ...

L. Flis
Votes: 0
Answers: 1
How to run specific Kernel in jupyter hub from terminal
Assume I have a script 'test.py'. To run this in Jupyter terminal I can simply put
python test.py
However, what if I wish to run this with K8s cluster rather than Python. Is there any way to execute ...

emilk
Votes: 0
Answers: 0
How to print(dump) a list of interactively~ user-defined (not imported) function names and definitions?
in answer to:
Can Python print a function definition?
What's wrong with this?
# Get a list of all user-defined functions and print their definitions
import inspect, sys, types
# sys.stdout.write(insp...

BlipBertMon
Votes: 0
Answers: 1