ملف:Mplwp sec csc piaxis.svg

الملف الأصلي(ملف SVG، أبعاده 600 × 400 بكسل، حجم الملف: 30 كيلوبايت)

وصف قصير

Description
English: Plot of the trigonometric functions Secant and Cosecant in the interval :
Date 2014-04-13
Source Own work
Author Geek3
⧼wm-license-information-other-versions⧽


Source code

The plot was generated with mplwp 1.0. mplwp source

#!/usr/bin/python
# -*- coding: utf8 -*-

import matplotlib.pyplot as plt
import matplotlib as mpl
import numpy as np
from math import *

code_website = 'http://commons.wikimedia.org/wiki/User:Geek3/mplwp'
try:
    import mplwp
except ImportError, er:
    print 'ImportError:', er
    print 'You need to download mplwp.py from', code_website
    exit(1)

name = 'mplwp_sec_csc_piaxis.svg'
fig = mplwp.fig_standard(mpl)

# add pi to xaxis labels
def flabel(x, i):
    if x != int(x):
        return ''
    return u'{}\u03C0'.format(int(x)).replace('-', u'\u2212')
fig.gca().xaxis.set_major_formatter(mpl.ticker.FuncFormatter(flabel))

xlim = -2,2; fig.gca().set_xlim(xlim)
ylim = -5,5; fig.gca().set_ylim(ylim)
mplwp.mark_axeszero(fig.gca())

f1 = lambda x: 1.0 / cos(pi*x)
for i, trange in enumerate([ [(i-0.49), (i+0.49)] for i in range(-2, 3)]):
    x = np.linspace(trange[0], trange[1], 1001)
    y = [f1(xx) for xx in x]
    if i == 0:
        plt.plot(x, y, label='sec')
    else:
        plt.plot(x, y, color=fig.gca().lines[-1].get_color())

f2 = lambda x: 1.0 / sin(pi*x)
for i, trange in enumerate([[(i+0.01), (i+0.99)] for i in range(-2, 3)]):
    x = np.linspace(trange[0], trange[1], 1001)
    y = [f2(xx) for xx in x]
    if i == 0:
        plt.plot(x, y, label='csc')
    else:
        plt.plot(x, y, color=fig.gca().lines[-1].get_color())

mpl.rc('legend', borderaxespad=1.0)
plt.legend(loc='upper center', ncol=2).get_frame().set_alpha(0.9)
    
plt.savefig(name)
mplwp.postprocess(name)

ترخيص


I, the copyright holder of this work, hereby publish it under the following licenses:
GFDL
يسمح بنسخ و توزيع و/أو تعديل هذا المستند وفق شروط رخصة الوثائق الحرة (جنو) إصدار 1.2 أو أي إصدار أحدث المنشورة من قبل مؤسسة البرمجيات الحرة بدون أقسام ثابته و نصوص الغلاف الأمامي و الخلفي.
قالب:Cc-by-3.0
[You may select the license of your choice.] Error: {{Lang}}: text has italic markup (help)

تاريخ الملف

اضغط على زمن/تاريخ لرؤية الملف كما بدا في هذا الزمن.

زمن/تاريخصورة مصغرةالأبعادمستخدمتعليق
حالي ★ مراجعة معتمدة
19:03، 25 ديسمبر 2023
تصغير للنسخة بتاريخ 19:03، 25 ديسمبر 2023600 × 400 (30 كيلوبايت)Pastakhov (نقاش | مساهمات)Upload https://upload.wikimedia.org/wikipedia/commons/8/80/Mplwp_sec_csc_piaxis.svg

لا يوجد صفحات تصل لهذه الصورة.

معلومات الصورة (ميتا)