# Author: Ika# Date: 12/11/2014settermsvgfont'Times, 18'size500,300setoutput'parabola_circle.svg'# In this program, the parabola equation is y = x^2.# The circle equation is x^2 + (y-0.5)^2 = 1/4.# We make it parametric as x = sin(t), y = 0.5 + cos(t).setmultiplot# The ratio of the height and width of the plot chart is 1/2 = 0.5.setsizeratio0.5setxrange[-1:1]setyrange[0:1]# Unit along the axes is 0.5.setxtics0.5setytics0.5# Draw the axes.setxzeroaxislt-1lcrgb"black"lw1setyzeroaxislt-1lcrgb"black"lw1setgridunsetlabelsetkeyoff# Draw the parabola y=x^2.plotx*xlcrgb"black"lw2;# Draw the circle by using the parametric equations.setparametricsettrange[0:2*pi]plot0.5*sin(t),0.5+0.5*cos(t)lcrgb"red"lw3;unsetmultiplotsettermx11setoutput
ترخيص
أنا، صاحب حقوق التأليف والنشر لهذا العمل، أنشر هذا العمل تحت الرخصة التالية:
نسب العمل إلى مُؤَلِّفه – يلزم نسب العمل إلى مُؤَلِّفه بشكل مناسب وتوفير رابط للرخصة وتحديد ما إذا أجريت تغييرات. بالإمكان القيام بذلك بأية طريقة معقولة، ولكن ليس بأية طريقة تشير إلى أن المرخِّص يوافقك على الاستعمال.
الإلزام بترخيص المُشتقات بالمثل – إذا أعدت إنتاج المواد أو غيرت فيها، فيلزم أن تنشر مساهماتك المُشتقَّة عن الأصل تحت ترخيص الأصل نفسه أو تحت ترخيص مُتوافِقٍ معه.