파일:Polynomialdeg3.svg

testwiki
둘러보기로 이동 검색으로 이동
원본 파일 (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
 이 SVG 파일의 소스 코드 문법이 올바릅니다.
 이 벡터 그림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");

설명

이 파일이 나타내는 바에 대한 한 줄 설명을 추가합니다
Graphing of a third degree polynomial, with roots at -4, -1 and 2, and a y-intercept of -2.

이 파일에 묘사된 항목

다음을 묘사함

737 바이트

image/svg+xml

6b25de438d8c38ccbc816cead66e0c79b7d47094

파일 역사

날짜/시간 링크를 클릭하면 해당 시간의 파일을 볼 수 있습니다.

날짜/시간섬네일크기사용자설명
현재2015년 1월 2일 (금) 17:332015년 1월 2일 (금) 17:33 판의 섬네일400 × 400 (737 바이트)wikimediacommons>KrishnavedalaReverted to version as of 13:02, 30 August 2008: Cleaner rendering. text and graph not clear in the newly uploaded version.

다음 문서 2개가 이 파일을 사용하고 있습니다: