Download free for 30 days
Sign in
Upload
Language (EN)
Support
Business
Mobile
Social Media
Marketing
Technology
Art & Photos
Career
Design
Education
Presentations & Public Speaking
Government & Nonprofit
Healthcare
Internet
Law
Leadership & Management
Automotive
Engineering
Software
Recruiting & HR
Retail
Sales
Services
Science
Small Business & Entrepreneurship
Food
Environment
Economy & Finance
Data & Analytics
Investor Relations
Sports
Spiritual
News & Politics
Travel
Self Improvement
Real Estate
Entertainment & Humor
Health & Medicine
Devices & Hardware
Lifestyle
Change Language
Language
English
Español
Português
Français
Deutsche
Cancel
Save
EN
Uploaded by
Brayan Kalaka
TXT, PDF
172 views
Python codigo graficas
Codigo para graficar en Phyton
Engineering
◦
Read more
0
Save
Share
Embed
Embed presentation
Download
Download to read offline
1
/ 1
More Related Content
PDF
DIBUJO EN JFRAME CASA
by
Anel Sosa
PDF
[KOSSA] C++ Programming - 14th Study - template
by
Seok-joon Yun
TXT
Los fantastico
by
Brenda Jazmin
TXT
Practica 4 errores
by
UVM
PDF
contoh Program C++ tentang fungsi for
by
M Fahmi Ansori
PDF
An introduction to functional programming with Go [redux]
by
Eleanor McHugh
PPT
Создание новых объектов
by
Constantin Kichinsky
DOCX
Prueba de montecarlo
by
Gonzalo Negrete Montaño
DIBUJO EN JFRAME CASA
by
Anel Sosa
[KOSSA] C++ Programming - 14th Study - template
by
Seok-joon Yun
Los fantastico
by
Brenda Jazmin
Practica 4 errores
by
UVM
contoh Program C++ tentang fungsi for
by
M Fahmi Ansori
An introduction to functional programming with Go [redux]
by
Eleanor McHugh
Создание новых объектов
by
Constantin Kichinsky
Prueba de montecarlo
by
Gonzalo Negrete Montaño
What's hot
PDF
Wave ECG
by
Kasun Ranga Wijeweera
PPT
Vcs12
by
Malikireddy Bramhananda Reddy
RTF
Aman
by
Sejal Bhatewara
PPTX
Como crear una matriz de 3x3 con c++ con menu
by
JoseGCordero
DOCX
Practica 10
by
Yoly QC
PPSX
Recursion prog (1)
by
Frijo Francis
DOCX
listing output program C
by
AdjievanGestu
PDF
Event loops in java script 01 - stack
by
Vishnu Padmanabhan
TXT
Zadatak
by
Zeljko Lukic
DOCX
Dsa 1
by
Harisrasheed48
PDF
Bcsl 033 data and file structures lab s1-2
by
Dr. Loganathan R
TXT
Assignment
by
Mitch Sagabaen
DOCX
Manual de practicas
by
jacqueline de kikas
DOCX
exercise of basic computer programming.docx
by
miftah88
DOCX
Info clasa
by
Ilinca Ostroschi
PPT
Vcs6
by
Malikireddy Bramhananda Reddy
PPTX
Linker
by
Satyamevjayte Haxor
KEY
python-geohex
by
遼 会田
Wave ECG
by
Kasun Ranga Wijeweera
Vcs12
by
Malikireddy Bramhananda Reddy
Aman
by
Sejal Bhatewara
Como crear una matriz de 3x3 con c++ con menu
by
JoseGCordero
Practica 10
by
Yoly QC
Recursion prog (1)
by
Frijo Francis
listing output program C
by
AdjievanGestu
Event loops in java script 01 - stack
by
Vishnu Padmanabhan
Zadatak
by
Zeljko Lukic
Dsa 1
by
Harisrasheed48
Bcsl 033 data and file structures lab s1-2
by
Dr. Loganathan R
Assignment
by
Mitch Sagabaen
Manual de practicas
by
jacqueline de kikas
exercise of basic computer programming.docx
by
miftah88
Info clasa
by
Ilinca Ostroschi
Vcs6
by
Malikireddy Bramhananda Reddy
Linker
by
Satyamevjayte Haxor
python-geohex
by
遼 会田
Python codigo graficas
1.
import math import matplotlib.pyplot
as plt import numpy as np x=np.arange(0,10,0.1) y=2*math.sin(4*x)-x**2+10*x #f(x)=2sin(4x)-x^2+10x plt.plot(x,y) plt.show() --------------------------------------------------------------------- import numpy as np import matplotlib.pyplot as plt x = np.linspace(0, 6.0, 100) y = np.linspace(0, 1.4, 100) font = {'family' : 'serif', 'color' : 'darkred', 'weight' : 'normal', 'size' : 16, } plt.title('Solucion Grafica', fontdict=font) plt.text(2.0, 0.12, r'$ Edward Stiven Rodirguez 20101005047$', fontdict=font) plt.text(2.0, 0.04, r'$ Brayan Ismeth Mora 20101005092$', fontdict=font) font = {'family' : 'serif', 'color' : 'blue', 'weight' : 'normal', 'size' : 15, } plt.text(1, 0.9, r'$ 1-exp(-x)$', fontdict=font) font = {'family' : 'serif', 'color' : 'green', 'weight' : 'normal', 'size' : 15, } plt.text(3, 0.5, r'$ x/5$', fontdict=font) plt.plot(x, 1-np.exp(-x), x, x / 5) plt.show()
Download