Questions tagged as 'jupyter'

0
answers

conflict between a 1D array and 2D equations system

I am a beginner in python and I have zero programming knowledge. I'm trying to solve this system of equations with odeint : def croissance(x,t): dx = [0,0] dx[0] = (gamma_ - alpha_ * beta_) * M - alpha_ * M * D dx[1] =...
asked by 24.01.2018 / 09:57
0
answers

Jupyter does not work in Fedora 26

I am using the recent version of fedora (26), and all very well with Python3, it works perfectly the "Scipy stack" with the fedora commands I have been able to install and use numpy, pandas, etc. The problem is that I installed Jupyter with the...
asked by 19.07.2017 / 05:46
1
answer

How to add an image to a Notebook in Jupyter

I'm using the following line to add images from the internet: ! [Imagen] (http://animals.sandiegozoo.org/sites/default/files/2016-09/animals_hero_armadillo_0.jpg) This has worked for me, but I've tried this: ! [Imagen] (~ / Usuarios /...
asked by 11.06.2017 / 04:17
1
answer

How do I get jupyter Notebook to return the two possible values of a square root?

I'm starting with Jupyter notebook in the race, and in practice I need to get the two values of a square root. That is, when I put sqrt (9), I returned 3 and -3. I have looked for solutions everywhere but none of them is useful! Thank you very m...
asked by 10.10.2017 / 20:12