当前位置: 首页>>代码示例>>Python>>正文


Python Plotter.show方法代码示例

本文整理汇总了Python中taref.plotter.api.Plotter.show方法的典型用法代码示例。如果您正苦于以下问题:Python Plotter.show方法的具体用法?Python Plotter.show怎么用?Python Plotter.show使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在taref.plotter.api.Plotter的用法示例。


在下文中一共展示了Plotter.show方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。

示例1: line

# 需要导入模块: from taref.plotter.api import Plotter [as 别名]
# 或者: from taref.plotter.api.Plotter import show [as 别名]
    #coup=(1.0/Np*sin(X)/sin(X/Np))**2

    pl=Plotter()
    line(frq, a._get_coupling(frq)/a.max_coupling, plotter=pl)
    line(frq, a._get_Lamb_shift(frq)/a.max_coupling, plotter=pl, color="red")
    line(frq, coup, color="purple", plotter=pl)
    #hb=hilbert(coup) #a._get_coupling(frq))
    #line(frq, real(hb), plotter=pl, color="green", linewidth=0.3)
    #line(frq, imag(hb), plotter=pl, color="black", linewidth=0.3)
    Baa= (1+cos(X/(4*Np)))*(1.0/Np)**2*2*(Np*sin(2*X/Np)-sin(2*X))/(2*(1-cos(2*X/Np)))
    #Baa=-(sin(2.0*X)-2.0*X)/(2.0*X**2.0)

    line(frq, Baa, plotter=pl, color="cyan", linewidth=0.3)

    pl.show()

    b=IDT(ft="single")
    a.ft_mult=5
    print a.mu_mult, a.ft_mult, b.mu_mult, b.ft_mult
    print a.couple_mult, b.couple_mult
    a.ft="single"
    a.ft_mult=None
    print a.mu_mult, a.ft_mult, b.mu_mult, b.ft_mult
    print a.couple_mult, b.couple_mult

    print a.epsinf, a.C
    a.epsinf=4e-10
    print a.C
    a.C=7.1e-14
    print a.epsinf, a.C
开发者ID:priyanka27s,项目名称:TA_software,代码行数:32,代码来源:idt.py


注:本文中的taref.plotter.api.Plotter.show方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。