चित्र:Simultaneous equations example 1.svg

पृष्ठ की सामग्री दूसरी भाषाओं में उपलब्ध नहीं है।
मुक्त ज्ञानकोश विकिपीडिया से

मूल चित्र(SVG फ़ाइल, साधारणतः 305 × 314 पिक्सेल, फ़ाइल का आकार: 61 KB)

सारांश

विवरण
English: An illustration of how the two example equations in the simultaneous equations entry intersect with each other. Created using python.
दिनांक
स्रोत अपना कार्य
लेखक Krishnavedala
दूसरे संस्करण w:File:Simultaneous_equations_example_1.png
SVG genesis
InfoField
 
The SVG code is valid.
 
इस वेक्टर चित्र को Matplotlib की मदद से बनाया गया था।

Source Code

from matplotlib.pyplot import *
from numpy import *
from mpl_toolkits.axisartist import *

theta = linspace(-pi,pi,100)
x1, y1 = cos(theta), sin(theta)
x2, y2 = theta, -0.5*theta

def myAxes(this,xlim,ylim,zero=False):
	if zero:
		this.axis[:].set_visible(False)
		this.axis["x"] = ax.new_floating_axis(0,0)
		this.axis["x"].set_axisline_style("-|>")
		this.axis["y"] = ax.new_floating_axis(1,0)
		this.axis["y"].set_axisline_style("-|>")
		this.axis["y"].set_axis_direction("left")
	this.grid(True)
	this.minorticks_on()
	this.set_xlim(-xlim,xlim)
	this.set_ylim(-ylim,ylim)
	this.set_xticks([-1,-.5,.5,1])
	this.set_yticks([-1,-.5,0,.5,1])
	this.set_xticklabels([r"$-1$",r"$-\frac{1}{2}$",r"$\frac{1}{2}$",r"$1$"])
	this.set_yticklabels([r"$-1$",r"$-\frac{1}{2}$",r"$0$",r"$\frac{1}{2}$",r"$1$"])
	this.text(xlim,.1,"x")
	this.text(.1,ylim,"y")
	this.legend(frameon=False, handletextpad=0, \
		labelspacing=.05,bbox_to_anchor=(1.1,1.1))
	setp(this.get_legend().get_texts(),fontsize=12)

fig = figure(figsize=(4,4))
ax = Subplot(fig,"111",axisbg='none')
fig.add_subplot(ax)
ax.plot(x1,y1,'g',linewidth=2,label=r"$x^2+y^2=1$")
ax.plot(x2,y2,'r',linewidth=2,label=r"$2x+4y=0$")
pt1 = (-2.,1.) / sqrt(5.)
pt2 = -pt1
ax.plot([][0],pt2[0],[][1],pt2[1],'o')
ax.annotate(r"$\left(-\frac{2}{\sqrt{5}},\frac{1}{\sqrt{5}} \right)$", \
	xy=pt1, xytext=(-1.5,1),ha='left',arrowprops= \
	dict(arrowstyle="->"),fontsize='large')
ax.annotate(r"$\left(\frac{2}{\sqrt{5}},-\frac{1}{\sqrt{5}} \right)$", \
	xy=pt2, xytext=(1.5,-1),ha='right',arrowprops= \
	dict(arrowstyle="->"),fontsize='large')
myAxes(ax,1.5,1.5,zero=True)

fig.savefig("Simultaneous_equations_example_1.svg",bbox_inches="tight",\
	pad_inches=.15)

लाइसेंस

मैं, इस कार्य का/की कॉपीराइट धारक, इसे निम्न लाइसेंसों के अंतर्गत प्रकाशित करता/करती हूँ:
w:hi:क्रिएटिव कॉमन्स
श्रेय समानसांझा
इस फ़ाइल को क्रिएटिव कॉमन्स श्रेय-समानसांझा 3.0 अनरिपोर्टेड लाइसेंस के अंतर्गत लाइसेंस किया गया है।
आप खुलकर:
  • बाँट सकते हैं – रचना की प्रतिलिपि बना सकते हैं, बाँँट सकते हैं और संचारित कर सकते हैं
  • रीमिक्स कर सकते हैं – कार्य को अनुकूलित कर सकते हैं
निम्नलिखित शर्तों के अंतर्गत:
  • श्रेय – यह अनिवार्य है कि आप यथोचित श्रेय प्रदान करें, लाइसेंस की कड़ी प्रदान करें, और अगर कोई बदलाव हुए हों तो उन्हें इंगित करें। आप ऐसा किसी भी उचित तरीके से कर सकते हैं, लेकिन किसी भी तरह उससे यह नहीं संकेत नहीं किया जाना चाहिए कि लाइसेंसधारी द्वारा आपको अथवा आपके इस प्रयोग का समर्थन किया जा रहा हो।
  • समानसांझा – अगर आप इस रचना में कोई बदलाव करते हैं या इसपर आधारित कुछ रचित करते हैं तो आप अपने योगदान को सिर्फ इसी या इसके सामान किसी लाइसेंस के अंतर्गत बाँट सकते हैं।
GNU head इस दस्तावेज़ को Free Software Foundation द्वारा प्रकाशित GNU मुक्त प्रलेख लाइसेंस के संस्करण 1.2 या नए (बिना किसी अपरिवर्तनीय अनुभागों और अगले या पिछले आवरण के टेक्स्ट के) के अंतर्गत प्रतिलिपि बनाने, बाँटने और/या बदलने की अनुमति प्रदान की जाती है। इस लाइसेंस की एक प्रतिलिपि GNU मुक्त प्रलेख लाइसेंस नामक अनुभाग में शामिल है।
आप अपना पसंद का लाइसेंस चुन सकते हैं।

Captions

Add a one-line explanation of what this file represents

Items portrayed in this file

चित्रण

source of file अंग्रेज़ी

original creation by uploader अंग्रेज़ी

चित्र का इतिहास

फ़ाइलका पुराना अवतरण देखने के लिये दिनांक/समय पर क्लिक करें।

दिनांक/समयथंबनेलआकारसदस्यप्रतिक्रिया
वर्तमान01:30, 10 जून 201101:30, 10 जून 2011 के संस्करण का थंबनेल संस्करण305 × 314 (61 KB)Krishnavedala{{Information |Description ={{en|1=An illustration of how the two example equations in the simultaneous equations entry intersect with each other. Created using python.

निम्नलिखित पन्ने इस चित्र से जुडते हैं :

चित्र का वैश्विक उपयोग

इस चित्र का उपयोग इन दूसरे विकियों में किया जाता है: