चित्र:Simultaneous equations example 1.svg
दिखावट
भारतपीडिया से
अंगूठाकार बनाने में त्रुटि हुई: फ़ाइल गायब है
मूल फ़ाइल (SVG फ़ाइल, साधारणतः ३०५ × ३१४ पिक्सेल, फ़ाइल का आकार: ६१ KB)
यह फ़ाइल एक साझे भंडार से है और दूसरे परियोजनाओं द्वारा भी प्रयोग की जा सकती है। वहाँ पर इसका फ़ाइल विवरण पृष्ठ में मौजूद विवरण नीचे दिखाया गया है।
सारांश
| विवरणSimultaneous equations example 1.svg |
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 |
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)
लाइसेंस
मैं, इस कार्य का/की कॉपीराइट धारक, इसे निम्न लाइसेंसों के अंतर्गत प्रकाशित करता/करती हूँ:
इस फ़ाइल को क्रिएटिव कॉमन्स श्रेय-समानसांझा 3.0 अनांतरित लाइसेंस के अंतर्गत लाइसेंस किया गया है।
- आप खुलकर:
- बाँट सकते हैं – रचना की प्रतिलिपि बना सकते हैं, बाँँट सकते हैं और संचारित कर सकते हैं
- रीमिक्स कर सकते हैं – कार्य को अनुकूलित कर सकते हैं
- निम्नलिखित शर्तों के अंतर्गत:
- श्रेय – यह अनिवार्य है कि आप यथोचित श्रेय प्रदान करें, लाइसेंस की कड़ी प्रदान करें, और अगर कोई बदलाव हुए हों तो उन्हें इंगित करें। आप ऐसा किसी भी उचित तरीके से कर सकते हैं, लेकिन किसी भी तरह उससे यह नहीं संकेत नहीं किया जाना चाहिए कि लाइसेंसधारी द्वारा आपको अथवा आपके इस प्रयोग का समर्थन किया जा रहा हो।
- समानसांझा – यदि आप सामग्री को रीमिक्स करते हैं, बदलते हैं, या उस पर आधारित कुछ बनाते हैं, तो आपको अपने योगदान को समान या संगत लाइसेंस के तहत वितरित करना होगा।
| इस दस्तावेज़ को Free Software Foundation द्वारा प्रकाशित GNU मुक्त प्रलेख लाइसेंस के संस्करण 1.2 या नए (बिना किसी अपरिवर्तनीय अनुभागों और अगले या पिछले आवरण के टेक्स्ट के) के अंतर्गत प्रतिलिपि बनाने, बाँटने और/या बदलने की अनुमति प्रदान की जाती है। इस लाइसेंस की एक प्रतिलिपि GNU मुक्त प्रलेख लाइसेंस नामक अनुभाग में शामिल है।http://www.gnu.org/copyleft/fdl.htmlGFDLGNU Free Documentation Licensetruetrue |
आप अपना पसंद का लाइसेंस चुन सकते हैं।
Captions
Add a one-line explanation of what this file represents
Items portrayed in this file
चित्रण
some value
९ जून 2011
source of file अंग्रेज़ी
original creation by uploader अंग्रेज़ी
software used for creation अंग्रेज़ी
फ़ाइल का इतिहास
फ़ाइल पुराने समय में कैसी दिखती थी यह जानने के लिए दिनांक/समय पर क्लिक करें।
| दिनांक/समय | अंगूठाकार | आकार | सदस्य | टिप्पणी | |
|---|---|---|---|---|---|
| वर्तमान | ०७:००, १० जून २०११ | अंगूठाकार बनाने में त्रुटि हुई: फ़ाइल गायब है | ३०५ × ३१४ (६१ KB) | smartcommons>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. |
चित्र का उपयोग
यह पृष्ठ इस चित्र का इस्तेमाल करता है: