Recherche
Voici les résultats de votre recherche.
Pages trouvées :
- algos_divers (teachi…gappchim)
- algos_entiers (teach…appchim)
- algos_graphes (teach…appchim)
- altair_simple (teach…appchim)
- analyse_images (teach…appchim)
- calcul_matriciel_2012 (t…him)
- notions_fondamentales (t…him)
- open_chemical_databases
- parsing_chemical_formula
- periodical_table_electronegativity
- pygal_simple (teachi…gappchim)
- random_walk_2d-simple (t…him)
- histogramme_simple (tea…llery)
- ir_spectrum_co (teach…gallery)
- pka_pkb_plane (teach…gallery)
- potentiel_energy_surface
- potentiel_morse (teac…allery)
- rotateur_biatomique (te…lery)
Résultats plein texte:
- notions_fondamentales
- ions les plus importantes, en français. Le site Real Python propose un tuto : [[https://realpython.com... **Opérateurs de comparaison** sont : * == ("égal à"), * != ("différent de"), à utiliser préfér... < ("plus petit que"), * >= ("plus grand ou égal à"), * < = ("plus petit ou égal à") * **Blocs d'instructions** : plusieurs instructions consécu
- progappchim
- ies/samples-public/html/notebooks/chemistry/chemical_elements_data-01.ipynb|application sur les donnée... navigateurs (//i.e.// Jupyter notebooks) * [[pygal_simple|les bases de Pygal]], une autre librairie graphique, simple (cf. ce [[http://pygal.org/en/stable/index.html|site]]) * [[altair_sim
- numpy_simple
- ference/routines.polynomials.package.html|polynomial]] devrait remplacer l'ancien "poly1d" **poly1d & polynomial ordonnent les coefficients en sens inverses !!!**... lynômes """ import numpy as np from numpy.polynomial import Polynomial as P # les coefficients du polynômes sont donnés par ordre décroissance des dégrés
- epidemie_coronavirus
- 40fd40299423467b48e9ecf6|Coronavirus COVID-19 Global Cases by Johns Hopkins CSSE]] * [[https://www.w... cientifiques : * Marius Gilbert (ULB/FNRS, Spatial Epidemiology lab ([[http://spell.ulb.be/|SpELL]])... le * [[https://en.wikipedia.org/wiki/Compartmental_models_in_epidemiology#The_SEIR_model|SEIR model]... imple and fast (< 200ms) API for tracking the global coronavirus (2019-nCoV) outbreak. It’s written in
- potentiel_energy_surface @teaching:progappchim:matplotlib_gallery
- icle "[[http://scitation.aip.org/content/aip/journal/jcp/23/3/10.1063/1.1742043|On a New Method of Drawing the Potential Energy Surface]]" (Shin Sato, J. Chem. Phys. 23, ... edlands.edu/facultyfolder/deweerd/tutorials/Tutorial-ContourPlot.pdf import matplotlib.pyplot as plt ... -the-aspect-ratio-in-matplotlib ax.set_aspect("equal") levels = np.linspace(-1.7, 1.0, 53) CS1 = plt.c
- matplotlib_simple
- s semblablement aux commandes du logiciel commercial [[http://fr.wikipedia.org/wiki/MATLAB|MatLab]]. ... ]] * [[http://matplotlib.org/users/pyplot_tutorial.html#controlling-line-properties]] ===== Tracé d... scompbiol.org/article/info%3Adoi%2F10.1371%2Fjournal.pcbi.1003833|Ten Simple Rules for Better Figures]... e * [[https://medium.com/@neuralnets/statistical-data-visualization-series-with-python-and-seaborn
- pandas
- with PEP 8 Python style : names = [ 'Biacromial diameter', 'Biiliac diameter', 'Bitrochan... ndasgui-analyzing-pandas-dataframes-with-a-graphical-user-interface-36f5c1357b1d|PandasGUI: Analyzing Pandas dataframes with a Graphical User Interface - Accessing Pandas Dataframes with... [[https://github.com/justmarkham/pycon-2019-tutorial|GitHub - justmarkham/pycon-2019-tutorial: Data Sc
- ph-3d
- .1021/ed400297t Python code under GPLv3 GNU General Public License http://www.gnu.org/licenses/gpl-3.... tact/ """ import numpy as np import numpy.polynomial.polynomial as poly import matplotlib.pyplot as plt from mpl_toolkits.mplot3d import * # Axes3D from ... cannot be applied on ndarrays due to the polynomial roots search dil=10**log10dil Ca=Ca0*dil
- presentation_principes
- ~~NOCACHE~~ ~~REVEAL transition=convex&controls=1&show_progress_bar=1&build_all_lists=1&open_in_new_wi... ue entre 2 opérandes,...) * Fortran, Cobol, Pascal, C, Basic,... (années 60s et 70s) * Indépenda... available. It provides access to the\nmathematical functions defined by the C standard.' >>> math.__... def move(): "déplacement de la balle" global x1, y1, vx, vy, dt, flag x1, y1 = x1 +vx*dt,
- openbabel_jmol
- ows, Mac OS X, Linux,...). C'est un programme idéal pour visualiser des molécules dont les fichiers d... charge_model.ComputeCharges(mol) partial_charges = charge_model.GetPartialCharges() ... y=',v3.GetY(), 'z=',v3.GetZ() print 'partial charges = ', partial_charges print 'total charge = ', "%i" % int(sum(partial_charges))
- notions_avancees
- nerators]] * [[http://sahandsaba.com/combinatorial-generation-using-coroutines-in-python.html]] * ... lus grand que v" if u > v else "v plus grand ou égal à u" print(reponse) </code> ===== map, filter, ... core-python|Role of Underscore(_) in Python Tutorial - In this tutorial, you're going to learn about the uses of underscore(_) in python]] Hafeezul Kareem
- scipy_simple
- es * transformées de Fourier * analyse du signal * interpolation * algèbre linéaire, y compris... amment sur le site de [[http://www.nr.com/|Numerical Recipes]]. En particulier, les anciennes éditions... stants.html """ import scipy.constants for key, val in scipy.constants.physical_constants.items(): print(key, val) print(key, scipy.constants.val
- tableau_periodique_2011
- ssage(legend1, text="Autres", width=300, font="Arial 15", bg="white") #font = taille et police aut... text="Metaux de transition", width=300, font="Arial 15", bg="#FFCCCC") metauxtransition.pack() ... ge(legend1, text="Gaz rares", width=300, font="Arial 15", bg="#00CCFF") gazrare.pack() nonmeta... e(legend1, text="Non metaux", width=300, font="Arial 15", bg="#00FF66") nonmetaux.pack() metau
- algos_entiers
- [[https://tutorialspoint.dev/algorithm/mathematical-algorithms/left-truncatable-prime]] ===== Factori... e solution : <code python; title : aperitif_initial-02.py> #!/usr/bin/env python # -*- coding: utf-8 ... i.python.org/moin/Generators """ def aperitif(total, prix): """Solutions du problème des apéritif... s. version sans itérateur :arg total int: Prix total à atteindre. :arg prix list:
- bioinformatic
- a l'interface Anaconda-Navigator, au départ du canal "conda-forge' ou par la commande suivante : conda... sion" count = [adn.count(c) for c in 'ACGT'] for val in count: print(val,) print() # autre "list comprehension", avec impression formatée → version "... if c == ACGT[i]: count[i] +=1 for val in count: print(val,) print() # count "à la