원본 파일(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");

설명

이 파일이 나타내는 바에 대한 한 줄 설명을 추가합니다
Mathematics

이 파일에 묘사된 항목

다음을 묘사함

파일 역사

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

날짜/시간섬네일크기사용자설명
현재2015년 1월 3일 (토) 01:332015년 1월 3일 (토) 01:33 판의 섬네일400 × 400 (737 바이트)KrishnavedalaReverted to version as of 13:02, 30 August 2008: Cleaner rendering. text and graph not clear in the newly uploaded version.
2013년 7월 24일 (수) 17:332013년 7월 24일 (수) 17:33 판의 섬네일720 × 720 (34 KB)IkamusumeFan1. Redrew completely using Matplotlib; 2. Source code added; 3. Labels added.
2008년 8월 30일 (토) 22:022008년 8월 30일 (토) 22:02 판의 섬네일400 × 400 (737 바이트)N.Mori{{Information |Description= |Source= |Date= |Author= |Permission= |other_versions= }}
2008년 1월 6일 (일) 22:422008년 1월 6일 (일) 22:42 판의 섬네일400 × 400 (965 바이트)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

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

이 파일을 사용하고 있는 모든 위키의 문서 목록

다음 위키에서 이 파일을 사용하고 있습니다:

이 파일의 더 많은 사용 내역을 봅니다.

메타데이터