Archivo:Polynomialdeg3.svg

Contenido de la página no disponible en otros idiomas.
De Wikipedia, la enciclopedia libre

Ver la imagen en su resolución original((Imagen SVG, nominalmente 400 × 400 pixels, tamaño de archivo: 737 bytes))

Resumen

Descripción

Polynomial of degree 3 with roots at 2, -1, and -4:

Fecha
Fuente Polynomialdeg3.png
Autor N.Mori
Permiso
(Reutilización de este archivo)
Public domain Este trabajo ha sido liberado al dominio público por su autor, N.Mori. Esto aplica para todo el mundo.
En algunos países esto puede no ser legalmente factible; si ello ocurriese:
N.Mori otorga a cualquier persona el derecho de usar este trabajo para cualquier propósito, sin ningún tipo de condición, a menos que éstas sean requeridas por la ley.
SVG desarrollo
InfoField
 
El código fuente de esta imagen SVG es válido.
 
Este gráfico vectorial fue creado con Matplotlib
Código fuente
InfoField

Python code

Source code
# Author: Ika, 2013-07-24
from pylab import *
import pylab as pl
import numpy as np

# Create a figure of size 8x6 points, 80 dots per inch
pl.figure(figsize=(8,8), dpi=80)

# Create a plot of the cubic function y=(x+4)(x+1)(x-2)/4
x = np.linspace(-5.0,4.0,256, endpoint=True)
y = (x+4)*(x+1)*(x-2)/4
pl.plot(x,y,color="magenta", linewidth=3.0, linestyle="-")

# Set labels
pl.xlim(-5,4)
pl.ylim(-4,7)

# Move the spines
ax = pl.gca()
ax.set_xlabel('x')
ax.set_ylabel('y')
ax.text(-5, 3, r'$y=\frac{1}{4}(x+4)(x+1)(x-2)$', fontsize=20)

# Set up the grid
ax.spines['right'].set_color('none')
ax.spines['top'].set_color('none')
ax.xaxis.set_ticks_position('bottom')
ax.spines['bottom'].set_position(('data',0))
ax.yaxis.set_ticks_position('left')
ax.spines['left'].set_position(('data',0))
ax.grid(color="grey",linestyle='--',linewidth=1)

# Save the figure to the output SVG file
plt.savefig("Cubic_Function_SVG.svg");

Leyendas

Añade una explicación corta acerca de lo que representa este archivo
Mathematics

Elementos representados en este archivo

representa a

Historial del archivo

Haz clic sobre una fecha y hora para ver el archivo tal como apareció en ese momento.

Fecha y horaMiniaturaDimensionesUsuarioComentario
actual16:33 2 ene 2015Miniatura de la versión del 16:33 2 ene 2015400 × 400 (737 bytes)KrishnavedalaReverted to version as of 13:02, 30 August 2008: Cleaner rendering. text and graph not clear in the newly uploaded version.
08:33 24 jul 2013Miniatura de la versión del 08:33 24 jul 2013720 × 720 (34 kB)IkamusumeFan1. Redrew completely using Matplotlib; 2. Source code added; 3. Labels added.
13:02 30 ago 2008Miniatura de la versión del 13:02 30 ago 2008400 × 400 (737 bytes)N.Mori{{Information |Description= |Source= |Date= |Author= |Permission= |other_versions= }}
13:42 6 ene 2008Miniatura de la versión del 13:42 6 ene 2008400 × 400 (965 bytes)N.Mori{{Information| |Description=Polynomial of degree 3: <math>y=\frac{x^3}{4}+\frac{3x^2}{4}-\frac{3x}{2}-2=\frac{1}{4}(x+4)(x+1)(x-2)</math> |Source=Image:Polynomialdeg3.png |Date=2007-01-06 |Author=~~~ |Permission=See below |other_versions=None }} [[Cat

Las siguientes páginas usan este archivo:

Uso global del archivo

Las wikis siguientes utilizan este archivo:

Ver más uso global de este archivo.

Metadatos