ファイル: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
 
この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");

キャプション

このファイルの内容を1行で記述してください
Mathematics

このファイルに描写されている項目

題材

6 1 2007

ファイルの履歴

過去の版のファイルを表示するには、その版の日時をクリックしてください。

日付と時刻サムネイル寸法利用者コメント
現在の版2015年1月2日 (金) 16:332015年1月2日 (金) 16: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日 (水) 08:332013年7月24日 (水) 08:33時点における版のサムネイル720 × 720 (34キロバイト)IkamusumeFan1. Redrew completely using Matplotlib; 2. Source code added; 3. Labels added.
2008年8月30日 (土) 13:022008年8月30日 (土) 13:02時点における版のサムネイル400 × 400 (737バイト)N.Mori{{Information |Description= |Source= |Date= |Author= |Permission= |other_versions= }}
2008年1月6日 (日) 13:422008年1月6日 (日) 13: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

以下の​ 2 ページがこのファイルを使用しています:

グローバルなファイル使用状況

以下に挙げる他のウィキがこの画像を使っています:

このファイルのグローバル使用状況を表示する。

メタデータ