이 파일은 위키미디어 공용에 있으며, 다른 프로젝트에서 사용하고 있을 가능성이 있습니다.
해당 파일에 대한 설명이 아래에 나와 있습니다.
설명Hermite poly phys.svg
The first five (physicists') Hermite polynomials. Made with the following Gnuplot changed from orginal code by Alessio Damato:
# set the output
set terminal svg
set output "hermite_poly_phys.svg"
set title "Hermite (physicists') Polynomials"
# axis properties
set key right bottom
set xrange [-2.5:3.5]
set yrange [-45:50]
set xzeroaxis linetype -1 linewidth 0.5
set yzeroaxis linetype -1 linewidth 0.5
set xlabel "x"
set ylabel "H_n (x)"
plot 1 ti "n = 0" with lines linewidth 2,
2*x ti "n = 1" with lines linewidth 2,
4*x**2-2 ti "n = 2" with lines linewidth 2,
8*x**3-12*x ti "n = 3" with lines linewidth 2,
16*x**4-48*x**2+12 ti "n = 4" with lines linewidth 2,
32*x**5-160*x**3+120*x ti "n = 5" with lines linewidth 2
GNU 자유 문서 사용 허가서 1.2판 또는 자유 소프트웨어 재단에서 발행한 이후 판의 규정에 따라 본 문서를 복제하거나 개작 및 배포할 수 있습니다. 본 문서에는 변경 불가 부분이 없으며, 앞 표지 구절과 뒷 표지 구절도 없습니다. 본 사용 허가서의 전체 내용은 GNU 자유 문서 사용 허가서 부분에 포함되어 있습니다.http://www.gnu.org/copyleft/fdl.htmlGFDLGNU Free Documentation Licensetruetrue
기존 올리기 기록
This image is a derivative work of the following images:
2009-03-30T19:32:20Z Vulpecula 600x480 (15043 Bytes) {{Information |Description=I made it with the following [[:en:Gnuplot|Gnuplot]] code: # set the output set terminal svg set output "hermite_poly.svg" set title "Hermite Polynomials" # axis properties set xrange [-3.5:6.5
{{Information |Description=The first five (physicists') Hermite polynomials. Made with the following Gnuplot changed from orginal code by Alessio Damato: <pre> # set the output set terminal svg set output "hermite_poly_