本文整理汇总了Python中pylab.xscale方法的典型用法代码示例。如果您正苦于以下问题:Python pylab.xscale方法的具体用法?Python pylab.xscale怎么用?Python pylab.xscale使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类pylab
的用法示例。
在下文中一共展示了pylab.xscale方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: solid_plot
# 需要导入模块: import pylab [as 别名]
# 或者: from pylab import xscale [as 别名]
def solid_plot():
# reference values, see
sref=0.0924102
wref=0.000170152
# List of the element types to process (text files)
eltyps=["C3D8",
"C3D8R",
"C3D8I",
"C3D20",
"C3D20R",
"C3D4",
"C3D10"]
pylab.figure(figsize=(10, 5.0), dpi=100)
pylab.subplot(1,2,1)
pylab.title("Stress")
# pylab.hold(True) # deprecated
for elty in eltyps:
data = numpy.genfromtxt(elty+".txt")
pylab.plot(data[:,1],data[:,2]/sref,"o-")
pylab.xscale("log")
pylab.xlabel('Number of nodes')
pylab.ylabel('Max $\sigma / \sigma_{\mathrm{ref}}$')
pylab.grid(True)
pylab.subplot(1,2,2)
pylab.title("Displacement")
# pylab.hold(True) # deprecated
for elty in eltyps:
data = numpy.genfromtxt(elty+".txt")
pylab.plot(data[:,1],data[:,3]/wref,"o-")
pylab.xscale("log")
pylab.xlabel('Number of nodes')
pylab.ylabel('Max $u / u_{\mathrm{ref}}$')
pylab.ylim([0,1.2])
pylab.grid(True)
pylab.legend(eltyps,loc="lower right")
pylab.tight_layout()
pylab.savefig("solid.svg",format="svg")
# pylab.show()
# Move new files and folders to 'Refs'
示例2: image_scale
# 需要导入模块: import pylab [as 别名]
# 或者: from pylab import xscale [as 别名]
def image_scale(xscale=1.0, yscale=1.0, axes="gca"):
"""
Scales the image extent.
"""
if axes == "gca": axes = _pylab.gca()
e = axes.images[0].get_extent()
x1 = e[0]*xscale
x2 = e[1]*xscale
y1 = e[2]*yscale
y2 = e[3]*yscale
image_set_extent([x1,x2],[y1,y2], axes)
示例3: xscale
# 需要导入模块: import pylab [as 别名]
# 或者: from pylab import xscale [as 别名]
def xscale(scale='log'):
_pylab.xscale(scale)
_pylab.draw()