ملف:Polynomialdeg3.svg

من أرابيكا، الموسوعة الحرة
اذهب إلى التنقل اذهب إلى البحث

الملف الأصلي(ملف SVG، أبعاده 400 × 400 بكسل، حجم الملف: 737 بايت)

ملخص

الوصف

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

التاريخ
المصدر Polynomialdeg3.png
المؤلف N.Mori
الترخيص
(إعادة استخدام هذا الملف)
Public domain وضع -N.Mori-، وهو المؤلف، هذا العمل في النِّطاق العامِّ. يسري ذلك في كل أرجاء العالم.
في بعض البلدان، قد يكون هذا التَّرخيص غيرَ مُمكنٍ قانونيَّاً، في هذه الحالة:
يمنح N.Mori الجميع حق استخدام هذا العمل
لأي غرض دون أي شرط ما لم يفرض القانون شروطًا إضافية.
SVG منشأ الملف
InfoField
 
الشيفرة المصدرية لهذا الرسم المتجه صالحة.
 
هذا الرسم المتجهي أُنشئ بواسطة Matplotlib
نص برمجي مصدري
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");

الشروحات

أضف شرحاً من سطر واحد لما يُمثِّله هذا الملف
Mathematics

العناصر المصورة في هذا الملف

يُصوِّر

٦ يناير 2007

تاريخ الملف

اضغط على زمن/تاريخ لرؤية الملف كما بدا في هذا الزمن.

زمن/تاريخصورة مصغرةالأبعادمستخدمتعليق
حالي20:33، 2 يناير 2015تصغير للنسخة بتاريخ 20:33، 2 يناير 2015400 × 400 (737 بايت)commonswiki>KrishnavedalaReverted to version as of 13:02, 30 August 2008: Cleaner rendering. text and graph not clear in the newly uploaded version.

ال1 ملف التالي مكررات لهذا الملف (المزيد من التفاصيل):

بيانات وصفية