檔案:Polynomialdeg3.svg

頁面內容不支援其他語言。
文出維基大典

全幅(SVG檔,貌有像素四〇〇矩四〇〇,幅七三七 位元組)

此檔為維基共享資源之共傳,可另策用也。 於共庫上檔述之示。

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

Polynomialdeg3.png
作者 N.Mori

(重用此檔案)
Public domain 此作品已由其作者,N.Mori,釋出至公有領域。此授權條款在全世界均適用。
這可能在某些國家不合法,如果是的話:
N.Mori授予任何人有權利使用此作品於任何用途,除受法律約束外,不受任何限制。
SVG開發
InfoField
 
SVG檔案的原始碼通過W3C驗證
 
向量圖形使用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

檔誌

揀日尋檔。

日時用戶
二〇一五年一月二日 (五) 一六時三三分於二〇一五年一月二日 (五) 一六時三三分之縮四〇〇矩四〇〇(七三七 位元組)KrishnavedalaReverted to version as of 13:02, 30 August 2008: Cleaner rendering. text and graph not clear in the newly uploaded version.
二〇一三年七月二四日 (三) 〇八時三三分於二〇一三年七月二四日 (三) 〇八時三三分之縮七二〇矩七二〇(三四 KB)IkamusumeFan1. Redrew completely using Matplotlib; 2. Source code added; 3. Labels added.
二〇〇八年八月三〇日 (六) 一三時〇二分於二〇〇八年八月三〇日 (六) 一三時〇二分之縮四〇〇矩四〇〇(七三七 位元組)N.Mori{{Information |Description= |Source= |Date= |Author= |Permission= |other_versions= }}
二〇〇八年一月六日 (日) 一三時四二分於二〇〇八年一月六日 (日) 一三時四二分之縮四〇〇矩四〇〇(九六五 位元組)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

下頁連本檔:

總文之用

下他共筆連本檔:

檢視此檔案的更多全域使用狀況

補註