本文整理匯總了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()