怎样绘制两个任意点之间PYX一个“支撑体系”线?
这将是这个样子:
布雷斯例如http://tof.canardpc.com/view/d16770a8-0fc6-4e9d-b43c-a11eaa09304d
怎样绘制两个任意点之间PYX一个“支撑体系”线?
这将是这个样子:
布雷斯例如http://tof.canardpc.com/view/d16770a8-0fc6-4e9d-b43c-a11eaa09304d
您可以通过绘制漂亮的花括号sigmoidals 。 我没有安装PYX所以我就(这里pylab)绘制这些使用matplotlib。 这里beta
控制在括号中的曲线的锐度。
import numpy as nx
import pylab as px
def half_brace(x, beta):
x0, x1 = x[0], x[-1]
y = 1/(1.+nx.exp(-1*beta*(x-x0))) + 1/(1.+nx.exp(-1*beta*(x-x1)))
return y
xmax, xstep = 20, .01
xaxis = nx.arange(0, xmax/2, xstep)
y0 = half_brace(xaxis, 10.)
y = nx.concatenate((y0, y0[::-1]))
px.plot(nx.arange(0, xmax, xstep), y)
px.show()
我策划了这沿x轴,以节省屏幕空间,但相处y轴支架只是交换x和y。 最后,PYX有大量的内置其中coould也为你的工作需要路径绘图功能。
tom10提供了一个很好的解决方案,但可以使用一些改进。
关键是产生在范围[0,1]一撑,[0,1],然后对其进行缩放。
此版本还允许您调整形状的位。 对于加分,它采用二阶导数找出如何密集的空间点。
mid
设置下部和上部之间的平衡。
beta1
和beta2
控制的曲线(下和上)如何急剧是。
你可以改变height
(或只是乘Y上标)。
使其垂直而非水平只涉及交换x和y。
initial_divisions
和resolution_factor
管理如何x值进行选择,但一般应忽略。
import numpy as NP
def range_brace(x_min, x_max, mid=0.75,
beta1=50.0, beta2=100.0, height=1,
initial_divisions=11, resolution_factor=1.5):
# determine x0 adaptively values using second derivitive
# could be replaced with less snazzy:
# x0 = NP.arange(0, 0.5, .001)
x0 = NP.array(())
tmpx = NP.linspace(0, 0.5, initial_divisions)
tmp = beta1**2 * (NP.exp(beta1*tmpx)) * (1-NP.exp(beta1*tmpx)) / NP.power((1+NP.exp(beta1*tmpx)),3)
tmp += beta2**2 * (NP.exp(beta2*(tmpx-0.5))) * (1-NP.exp(beta2*(tmpx-0.5))) / NP.power((1+NP.exp(beta2*(tmpx-0.5))),3)
for i in range(0, len(tmpx)-1):
t = int(NP.ceil(resolution_factor*max(NP.abs(tmp[i:i+2]))/float(initial_divisions)))
x0 = NP.append(x0, NP.linspace(tmpx[i],tmpx[i+1],t))
x0 = NP.sort(NP.unique(x0)) # sort and remove dups
# half brace using sum of two logistic functions
y0 = mid*2*((1/(1.+NP.exp(-1*beta1*x0)))-0.5)
y0 += (1-mid)*2*(1/(1.+NP.exp(-1*beta2*(x0-0.5))))
# concat and scale x
x = NP.concatenate((x0, 1-x0[::-1])) * float((x_max-x_min)) + x_min
y = NP.concatenate((y0, y0[::-1])) * float(height)
return (x,y)
用法很简单:
import pylab as plt
fig = plt.figure()
ax = fig.add_subplot(111)
x,y = range_brace(0, 100)
ax.plot(x, y,'-')
plt.show()
PS:不要忘了,你可以通过clip_on=False
以plot
,并把它的轴线之外。