• 设为首页
  • 点击收藏
  • 手机版
    手机扫一扫访问
    迪恩网络手机版
  • 关注官方公众号
    微信扫一扫关注
    迪恩网络公众号

Python signal.abcd_normalize函数代码示例

原作者: [db:作者] 来自: [db:来源] 收藏 邀请

本文整理汇总了Python中scipy.signal.abcd_normalize函数的典型用法代码示例。如果您正苦于以下问题:Python abcd_normalize函数的具体用法?Python abcd_normalize怎么用?Python abcd_normalize使用的例子?那么恭喜您, 这里精选的函数代码示例或许可以为您提供帮助。



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

示例1: __init__

 def __init__(self, *args, **kwords):
     """@brief Based on scipy.signal lti class init.
     Initialize the LTI system using either:
     
         - ('string to .mat file containing disSys')
         - (numerator, denominator)
         - (zeros, poles, gain)
         - (A, B, C, D) : state-space.
         - (A, B, C, D, Ts) : discrete-time state-space
         
     @pre .mat files are assumed to contain a discrete-time state-space
     object disSys which is a MATLAB structure, i.e not the new style MATLAB
     lti class. To convert to a struct in MATLAB simply use
     disSys = struct(MATLAB_SS_object) before saving the .mat file.
     @details the string to the .mat file is the absolute filename without
     the .mat extension.
     """
     N = len(args)
     if N == 1:
         # Assert the file exists
         assert os.path.isfile(args[0] + '.mat'), \
                IOError("File doesn't exist")
         # Save the path for later
         self._matPath = args[0]
         # extract discrete system matrices
         Dict = loadmat(args[0], variable_names = ['disSys','T'])
         disSys = Dict['disSys'][0,0]
         sysMat = [disSys['a'],disSys['b'],disSys['c'],disSys['d']]
         self._A, self._B, self._C, self._D = abcd_normalize(*sysMat)
         self._Ts = disSys["Ts"][0,0] #"Ts" is 2-D array for some reason!
         self.inputs = self.B.shape[-1]
         self.outputs = self.C.shape[0]
         self._isDiscrete = True
         self._T = np.array(Dict['T'])
         #self._updateDiscrete()
     elif N <= 4:
         super(StateSpace, self).__init__(*args, **kwords)
     elif N == 5:
         self._A, self._B, self._C, self._D = abcd_normalize(*args[0:4])
         # Check Ts is positive.
         if args[4] <= 0.0:
             raise ValueError("Ts must be positive")
         self._Ts = args[4]
         self.inputs = self.B.shape[-1]
         self.outputs = self.C.shape[0]
         self._isDiscrete = True
         #self._updateDiscrete()
     else:
         raise ValueError("Needs 2, 3, 4, or 5 arguments.")
开发者ID:RJSSimpson,项目名称:SHARPy,代码行数:49,代码来源:ssdiscrete.py


示例2: test_shapes

 def test_shapes(self):
     A, B, C, D = abcd_normalize(self.A, self.B, [1, 0], 0)
     assert_equal(A.shape[0], A.shape[1])
     assert_equal(A.shape[0], B.shape[0])
     assert_equal(A.shape[0], C.shape[1])
     assert_equal(C.shape[0], D.shape[0])
     assert_equal(B.shape[1], D.shape[1])
开发者ID:BranYang,项目名称:scipy,代码行数:7,代码来源:test_ltisys.py


示例3: test_missing_AB

 def test_missing_AB(self):
     A, B, C, D = abcd_normalize(C=self.C, D=self.D)
     assert_equal(A.shape[0], A.shape[1])
     assert_equal(A.shape[0], B.shape[0])
     assert_equal(B.shape[1], D.shape[1])
     assert_equal(A.shape, (self.C.shape[1], self.C.shape[1]))
     assert_equal(B.shape, (self.C.shape[1], self.D.shape[1]))
开发者ID:BranYang,项目名称:scipy,代码行数:7,代码来源:test_ltisys.py


示例4: test_missing_BC

 def test_missing_BC(self):
     A, B, C, D = abcd_normalize(A=self.A, D=self.D)
     assert_equal(B.shape[0], A.shape[0])
     assert_equal(B.shape[1], D.shape[1])
     assert_equal(C.shape[0], D.shape[0])
     assert_equal(C.shape[1], A.shape[0])
     assert_equal(B.shape, (self.A.shape[0], self.D.shape[1]))
     assert_equal(C.shape, (self.D.shape[0], self.A.shape[0]))
开发者ID:BranYang,项目名称:scipy,代码行数:8,代码来源:test_ltisys.py


示例5: test_missing_AD

 def test_missing_AD(self):
     A, B, C, D = abcd_normalize(B=self.B, C=self.C)
     assert_equal(A.shape[0], A.shape[1])
     assert_equal(A.shape[0], B.shape[0])
     assert_equal(D.shape[0], C.shape[0])
     assert_equal(D.shape[1], B.shape[1])
     assert_equal(A.shape, (self.B.shape[0], self.B.shape[0]))
     assert_equal(D.shape, (self.C.shape[0], self.B.shape[1]))
开发者ID:BranYang,项目名称:scipy,代码行数:8,代码来源:test_ltisys.py


示例6: test_zero_dimension_is_not_none1

 def test_zero_dimension_is_not_none1(self):
     B_ = np.zeros((2, 0))
     D_ = np.zeros((0, 0))
     A, B, C, D = abcd_normalize(A=self.A, B=B_, D=D_)
     assert_equal(A, self.A)
     assert_equal(B, B_)
     assert_equal(D, D_)
     assert_equal(C.shape[0], D_.shape[0])
     assert_equal(C.shape[1], self.A.shape[0])
开发者ID:BranYang,项目名称:scipy,代码行数:9,代码来源:test_ltisys.py


示例7: test_zero_dimension_is_not_none2

 def test_zero_dimension_is_not_none2(self):
     B_ = np.zeros((2, 0))
     C_ = np.zeros((0, 2))
     A, B, C, D = abcd_normalize(A=self.A, B=B_, C=C_)
     assert_equal(A, self.A)
     assert_equal(B, B_)
     assert_equal(C, C_)
     assert_equal(D.shape[0], C_.shape[0])
     assert_equal(D.shape[1], B_.shape[1])
开发者ID:BranYang,项目名称:scipy,代码行数:9,代码来源:test_ltisys.py


示例8: canonical

def canonical(sys, controllable=True):
    """Converts SISO to controllable/observable canonical form."""
    # TODO: raise nicer error if not SISO
    sys = LinearSystem(sys)
    ss = abcd_normalize(*sys.ss)
    if not _is_ccf(*ss):
        # TODO: if already observable than this might hurt the accuracy
        ss = sys2ss(sys2tf(ss))
        assert _is_ccf(*ss)
    if not controllable:
        ss = (ss[0].T, ss[2].T, ss[1].T, ss[3])
    return LinearSystem(ss, sys.analog)
开发者ID:arvoelke,项目名称:nengolib,代码行数:12,代码来源:system.py


示例9: test_normalized_matrices_unchanged

 def test_normalized_matrices_unchanged(self):
     A, B, C, D = abcd_normalize(self.A, self.B, self.C, self.D)
     assert_equal(A, self.A)
     assert_equal(B, self.B)
     assert_equal(C, self.C)
     assert_equal(D, self.D)
开发者ID:BranYang,项目名称:scipy,代码行数:6,代码来源:test_ltisys.py



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


鲜花

握手

雷人

路过

鸡蛋
该文章已有0人参与评论

请发表评论

全部评论

专题导读
上一篇:
Python signal.argrelextrema函数代码示例发布时间:2022-05-27
下一篇:
Python random.seed函数代码示例发布时间:2022-05-27
热门推荐
阅读排行榜

扫描微信二维码

查看手机版网站

随时了解更新最新资讯

139-2527-9053

在线客服(服务时间 9:00~18:00)

在线QQ客服
地址:深圳市南山区西丽大学城创智工业园
电邮:jeky_zhao#qq.com
移动电话:139-2527-9053

Powered by 互联科技 X3.4© 2001-2213 极客世界.|Sitemap