當前位置: 首頁>>代碼示例>>Python>>正文


Python PyDSTool.filteredDict方法代碼示例

本文整理匯總了Python中PyDSTool.filteredDict方法的典型用法代碼示例。如果您正苦於以下問題:Python PyDSTool.filteredDict方法的具體用法?Python PyDSTool.filteredDict怎麽用?Python PyDSTool.filteredDict使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在PyDSTool的用法示例。


在下文中一共展示了PyDSTool.filteredDict方法的3個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Python代碼示例。

示例1: make

# 需要導入模塊: import PyDSTool [as 別名]
# 或者: from PyDSTool import filteredDict [as 別名]
 def make(self, dsargs):
     # use cache if available
     for gen_ver, prev_dsargs in self.used_dsargs.items():
         if dst.filteredDict(dsargs, 'name', True) == dst.filteredDict(prev_dsargs,
                                                               'name', True):
             # compare everything but the name, but check all up to final '_ver<X>'
             parts1 = dsargs.name.split('_')
             parts2 = prev_dsargs.name.split('_') # will have one more part
             if parts1 == parts2[:-2]:
                 print("Reusing identical build")
                 return dst.loadObjects(os.path.join(self.cwd, 'models',
                                                 prev_dsargs.name+'.sav'))[0]
     # no matches
     return self.build(dsargs)
開發者ID:Vibhor100,項目名稱:fovea,代碼行數:16,代碼來源:common.py

示例2: map_workspace

# 需要導入模塊: import PyDSTool [as 別名]
# 或者: from PyDSTool import filteredDict [as 別名]
def map_workspace(con, pts, *args):
    """
    Returns a list of dictionaries, each representing the state of the
    calc_context workspace for each of the points given. Optional
    positional arguments will be passed first to the calc_context when
    calling it.

    This assumes the calc_context local_init accepts `pt` as an argument.
    """
    wseq = []
    for pt in pts:
        con(*args, pt=pt)
        wseq.append(dst.filteredDict(con.workspace.__dict__, ['_name'], neg=True))
    return wseq
開發者ID:mcneela,項目名稱:Retina,代碼行數:16,代碼來源:calc_context.py

示例3: clip_to_pt

# 需要導入模塊: import PyDSTool [as 別名]
# 或者: from PyDSTool import filteredDict [as 別名]
def clip_to_pt():
    """Extract clipboard point from gui to a dictionary"""
    pt = dst.filteredDict(gui.capturedPts['Master'], ['V', 'm', 'n'])
    return {'V': pt['V'], 'Na.m': pt['m'], 'K.n': pt['n']}
開發者ID:faical-yannick-congo,項目名稱:fovea,代碼行數:6,代碼來源:HH_simple_demo.py


注:本文中的PyDSTool.filteredDict方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。