Recherche
Voici les résultats de votre recherche.
Pages trouvées :
Résultats plein texte:
- presentation_principes
- * version de base “piles comprises” * module mathématique * accès aux fichiers et répertoires (... e avec les propriétés et opérations de la théorie mathématique des ensembles : appartenance, cardinalité... fonctions standard ==== <code python> >>> import math >>> math.pi 3.141592653589793 >>> math.cos(0) 1.0 >>> math.__dict__ {'tanh': <built-in function tanh>,
- factorielle-3
- e> La factorielle étant une fonction courante en mathématique, elle est bien sûr intégrée au module "math", appelable par l'instruction "import math". On peut vérifier en mode console de Python via la commande "help(math)" que la fonction "[[https://docs.python.org/3/li
- matplotlib_simple
- on * [[http://sympy.org/en/index.html|SymPy]] : mathématiques symboliques * [[http://pandas.pydata.o... tascience.com/the-simplest-way-of-making-gifs-and-math-videos-with-python-aec41da74c6e|The easiest and fastest way to make GIFs and math videos with Python - How to create amazing animat... i, Medium, Jan, 2021) * [[https://medium.com/@mathcube7/violin-plots-in-matplotlib-fcba7232c8c1|Viol
- notions_fondamentales
- e avec les propriétés et opérations de la théorie mathématique des [[http://fr.wikipedia.org/wiki/Ensemb... Importer un module de fonctions. Exemples : from math import * --> les fonction abs, sqrt, sin,... devi... ceci : <code python> a = 16 print(sqrt(a)) from math import * print(sqrt(a)) </code> ==== Veracité/fa... e ces directives en mode interactif sur le module math * pour les programmes longs et utilisant plusie
- pavage_penrose_2013
- travail de EC et LP, ba2 chimie 2012-2013 import math import cmath import cairo # definir le nombre d'or goldenRatio = (1 + math.sqrt(5)) / 2 def subdivide(triangles): resu... in xrange(10): B = cmath.rect(1, (2*i - 1) * math.pi / 10) C = cmath.rect(1, (2*i + 1) * math.pi / 10) if i % 2 == 0: B, C = C, B # seco
- grille_configurations_melange_binaire_2013
- me binaire modélisé from Tkinter import * import math import random root = Tk() #Fonction appelée lor... s possibles #N!/N1!(N-N1)! nbrEtats = int(math.factorial(size)/(math.factorial(nb1)*math.factorial(size-nb1))) c.create_text(50, 500, text="Nombre d'états possibles: "
- numpy_simple
- bleaux multidimensionnels ainsi que des fonctions mathématiques opérant sur ces tableaux. Chaque élémen... hape, e.dtype) f = np.sin(np.pi*0.5*a) # fonction mathématique et adaptation automatique du type print(f... léments, minimum, maximum </code> ==== Fonctions mathématiques principales : ==== * abs, sign, sqrt ... scipy.org/Tentative_NumPy_Tutorial]] * [[http://math.mad.free.fr/wordpress/wp-content/uploads/intronum
- polynomes-5
- ====== Polynômes : boucle for, fonction mathématique ====== <code python poly05-math-sinus.py> #!/usr/bin/env python # -*- coding: UTF-8 -*- """ écr... 'un programme pour évaluer des polynomes """ from math import * def polyeval(x,a): """ Fonction... cle for) # en combinaison avec une autre fonction mathématique (sinus) varcoef = [1., 2., 3., 4., 5., 6.
- progappchim
- s de SciPy]] : ajoute à NumPy des fonctionnalités mathématiques (intégration, optimisation, fonctions sp... * [[glossaire_chimie|Glossaire de chimie]] * [[math_nombres|Mathématiques et nombres]] * [[epidemie_coronavirus|Épidémie du coronavirus COVID-19]] =====... s.org/doi/10.1021/acs.jchemed.7b00681|Color Space Mathematical Modeling Using Microsoft Excel]] M. J. De
- epidemie_coronavirus
- researchtopics/23-simulationsinbiologyandmedicine|Mathematical simulations in medicine and biology]] *... cat Belge des Médecins ABSYM, 02/03/2020 * [[wp>Mathematical_modelling_of_infectious_disease|Mathematical modelling of infectious disease]] * [[wp>Basic_r
- math_nombres
- ====== Mathématiques et nombres ====== <WRAP center round tip 60%> Quelques programmes et algorithmes reliés aux mathématiques et aux nombres. </WRAP> * [[wp>fr:Th... rob.com/]] → 1/99**2 * [[https://mrob.com/pub/math/numbers-14.html]] * [[https://mrob.com/pub/se
- maxwell-boltzmann
- f_speeds """ import matplotlib.pyplot as plt from math import pi,exp # importation des fonctions mathématiques exp et pi plt.figure() #from pylab import * d... py, cf. http://docs.scipy.org/doc/ #les fonctions mathématiques exp et pi seront issues de nummpy plt.f
- pandas
- (ou [[http://fr.wikipedia.org/wiki/Esp%C3%A9rance_math%C3%A9matique|espérance mathématique]]) * Second moment: largeur de la distribution ([[http://fr.wik
- polynomes-12
- exemple [[https://algo.developpez.com/actu/339249/Mathematiques-et-Python-moins-apprendre-a-creer-une-cl... arge-des-operateurs-un-billet-blog-de-Denis-Hulo/|Mathématiques et Python - apprendre à créer une classe
- algos_entiers
- on]] * [[https://tutorialspoint.dev/algorithm/mathematical-algorithms/left-truncatable-prime]] =====