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


Python scipy.zeros_like方法代码示例

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


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

示例1: _RLSortRoots

# 需要导入模块: import scipy [as 别名]
# 或者: from scipy import zeros_like [as 别名]
def _RLSortRoots(mymat):
    """Sort the roots from sys._RLFindRoots, so that the root
    locus doesn't show weird pseudo-branches as roots jump from
    one branch to another."""

    sorted = zeros_like(mymat)
    for n, row in enumerate(mymat):
        if n == 0:
            sorted[n, :] = row
        else:
            # sort the current row by finding the element with the
            # smallest absolute distance to each root in the
            # previous row
            available = list(range(len(prevrow)))
            for elem in row:
                evect = elem-prevrow[available]
                ind1 = abs(evect).argmin()
                ind = available.pop(ind1)
                sorted[n, ind] = elem
        prevrow = sorted[n, :]
    return sorted 
开发者ID:python-control,项目名称:python-control,代码行数:23,代码来源:rlocus.py

示例2: ranktrafo

# 需要导入模块: import scipy [as 别名]
# 或者: from scipy import zeros_like [as 别名]
def ranktrafo(data):
    X = data.values[:, None]
    Is = X.argsort(axis=0)
    RV = sp.zeros_like(X)
    rank = sp.zeros_like(X)
    for i in xrange(X.shape[1]):
        x =  X[:,i]
        rank = sp.stats.rankdata(x)
        rank /= (X.shape[0]+1)
        RV[:,i] = sp.sqrt(2) * sp.special.erfinv(2*rank-1)

    return RV.flatten() 
开发者ID:MicrosoftResearch,项目名称:Azimuth,代码行数:14,代码来源:util.py


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