Bestand:Polynomialdeg3.svg

Uit testwiki
Naar navigatie springen Naar zoeken springen
Oorspronkelijk bestand (SVG-bestand, nominaal 400 × 400 pixels, bestandsgrootte: 737 bytes)

Dit bestand is afkomstig van Wikimedia Commons en kan ook in andere projecten gebruikt worden. De bestandsbeschrijvingspagina wordt hieronder weergegeven.

Beschrijving

Beschrijving

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

Datum
Bron Polynomialdeg3.png
Auteur N.Mori
Toestemming
(Hergebruik van dit bestand)
Public domain Dit werk vrijgegeven in het publieke domein door de auteur, N.Mori. Dit is wereldwijd van toepassing.
In sommige landen is dit wettelijk niet mogelijk; in die gevallen geldt:
N.Mori staat iedereen toe dit werk voor eender welk doel te gebruiken, zonder enige voorwaarden, tenzij zulke voorwaarden door de wet worden voorgeschreven.
SVG ontwikkeling
InfoField
 De broncode van dit SVG-bestand is deugdelijk.
 Deze vectorafbeelding is gemaakt met Matplotlib
Broncode
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");

Bijschriften

Beschrijf in één regel wat dit bestand voorstelt
Graphing of a third degree polynomial, with roots at -4, -1 and 2, and a y-intercept of -2.

Items getoond in dit bestand

beeldt af

737 byte

image/svg+xml

6b25de438d8c38ccbc816cead66e0c79b7d47094

Bestandsgeschiedenis

Klik op een datum/tijd om het bestand te zien zoals het destijds was.

Datum/tijdMiniatuurAfmetingenGebruikerOpmerking
huidige versie2 jan 2015 17:33Miniatuurafbeelding voor de versie van 2 jan 2015 17:33400 × 400 (737 bytes)wikimediacommons>KrishnavedalaReverted to version as of 13:02, 30 August 2008: Cleaner rendering. text and graph not clear in the newly uploaded version.

Dit bestand wordt op de volgende 2 pagina's gebruikt: