Tập tin:Polynomialdeg3.svg

Từ testwiki
Bước tới điều hướng Bước tới tìm kiếm
Tập tin gốc (tập tin SVG, 400×400 điểm ảnh trên danh nghĩa, kích thước: 737 byte)

Tập tin này được lưu ở Wikimedia Commons và nó có thể được sử dụng ở các dự án khác. Lời miêu tả của tập tin tại trang mô tả được hiển thị dưới đây.

Miêu tả

Miêu tả

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

Ngày
Nguồn gốc Polynomialdeg3.png
Tác giả N.Mori
Giấy phép
(Dùng lại tập tin)
Public domain Tác phẩm này đã được tác giả của nó, N.Mori, phát hành vào phạm vi công cộng. Điều này có hiệu lực trên toàn thế giới.
Tại một quốc gia mà luật pháp không cho phép điều này, thì:
N.Mori cho phép tất cả mọi người được quyền sử dụng tác phẩm này với bất cứ mục đích nào, không kèm theo bất kỳ điều kiện nào, trừ phi luật pháp yêu cầu những điều kiện đó.
SVG genesis
InfoField
 The SVG code is valid.
 This plot was created with Matplotlib.
Mã nguồn
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");

Chú thích

Ghi một dòng giải thích những gì có trong tập tin này
Graphing of a third degree polynomial, with roots at -4, -1 and 2, and a y-intercept of -2.

Khoản mục được tả trong tập tin này

mô tả

plot Tiếng Anh

checksum Tiếng Anh

6b25de438d8c38ccbc816cead66e0c79b7d47094

Lịch sử tập tin

Nhấn vào ngày/giờ để xem nội dung tập tin tại thời điểm đó.

Ngày/GiờHình xem trướcKích cỡThành viênMiêu tả
hiện tại17:33, ngày 2 tháng 1 năm 2015Hình xem trước của phiên bản lúc 17:33, ngày 2 tháng 1 năm 2015400×400 (737 byte)wikimediacommons>KrishnavedalaReverted to version as of 13:02, 30 August 2008: Cleaner rendering. text and graph not clear in the newly uploaded version.

2 trang sau sử dụng tập tin này: