日韩性视频-久久久蜜桃-www中文字幕-在线中文字幕av-亚洲欧美一区二区三区四区-撸久久-香蕉视频一区-久久无码精品丰满人妻-国产高潮av-激情福利社-日韩av网址大全-国产精品久久999-日本五十路在线-性欧美在线-久久99精品波多结衣一区-男女午夜免费视频-黑人极品ⅴideos精品欧美棵-人人妻人人澡人人爽精品欧美一区-日韩一区在线看-欧美a级在线免费观看

歡迎訪問 生活随笔!

生活随笔

當前位置: 首頁 > 编程资源 > 编程问答 >内容正文

编程问答

【控制】《鲁棒控制》-周克敏老师

發布時間:2025/4/5 编程问答 36 豆豆
生活随笔 收集整理的這篇文章主要介紹了 【控制】《鲁棒控制》-周克敏老师 小編覺得挺不錯的,現在分享給大家,幫大家做個參考.

文章目錄

  • Matlab `hinfnorm()`
    • Syntax
    • Description
    • E.G.


《Essentials of Robust Control》

山東科技大學周克敏教授主講《魯棒控制》課程

魯棒控制課件
鏈接:https://pan.baidu.com/s/1WD_9KuXSYlbvHpSxgGJcGg
提取碼:2khx

視頻課程地址:魯棒控制(B站)

Matlab hinfnorm()

Syntax

ninf = hinfnorm(sys) ninf = hinfnorm(sys,tol) [ninf,fpeak] = hinfnorm(___)

Description

ninf = hinfnorm(sys) returns the H∞ norm in absolute units of the dynamic system model, sys.

  • If sys is a stable SISO system, then the H∞ norm is the peak gain, the largest value of the frequency response magnitude.
  • If sys is a stable MIMO system, then the H∞ norm is the largest singular value across frequencies.
  • If sys is an unstable system, then the H∞ norm is defined as Inf.
  • If sys is a model that has tunable or uncertain parameters, then hinfnorm evaluates the H∞ norm at the current or nominal value of sys.
  • If is a model array, then hinfnorm returns an array of the same size as sys, where ninf(k) = hinfnorm(sys(:,:,k)) .

For stable systems, hinfnorm(sys) is the same as getPeakGain(sys).

ninf = hinfnorm(sys,tol) returns the H∞ norm of sys with relative accuracy tol.

[ninf,fpeak] = hinfnorm(___) also returns the frequency, fpeak, at which the peak gain or largest singular value occurs. You can use this syntax with any of the input arguments in previous syntaxes. If sys is unstable, then fpeak = Inf.

E.G.

Norm of MIMO System

Compute the H∞ norm of the following 2-input, 2-output dynamic system and the frequency at which the peak singular value occurs.

G(s)=[03ss2+s+10s+1s+52s+6]G(s) = \left[\begin{matrix} 0 & \frac{3s}{s^2 + s +10} \\ \frac{s+1}{s+5} & \frac{2}{s+6} \end{matrix}\right]G(s)=[0s+5s+1??s2+s+103s?s+62??]

G = [0 tf([3 0],[1 1 10]);tf([1 1],[1 5]),tf(2,[1 6])]; [ninf,fpeak] = hinfnorm(G)

ninf = 3.0150
fpeak = 3.1623

The H∞ norm of a MIMO system is its maximum singular value. Plot the singular values of G and compare the result from hinfnorm.

sigma(G), grid


The values ninf and fpeak are consistent with the singular value plot, which displays the values in dB.

https://www.mathworks.com/help/robust/ref/lti.hinfnorm.html

http://matrix.etseq.urv.es/manuals/matlab/toolbox/mutools/h2norm.html

總結

以上是生活随笔為你收集整理的【控制】《鲁棒控制》-周克敏老师的全部內容,希望文章能夠幫你解決所遇到的問題。

如果覺得生活随笔網站內容還不錯,歡迎將生活随笔推薦給好友。