modalsum
Syntax
Description
Examples
Retain Subset of Modal Components
This example shows how to retain only a subset of modal components from a modal decomposition. In this example you perform modal decomposition and retain the modes with a relative DC contribution of more than 10% by summing those components.
Create a random states-space model with order 10.
rng(0) G = rss(10,2,2);
Obtain the modal decomposition. Also, obtain the info
output argument to store the modal information.
[H,H0,info] = modalsep(G); size(H)
9x1 array of state-space models. Each model has 2 outputs, 2 inputs, and between 1 and 2 states.
The decomposition returns nine modal components.
To obtain the subset of modal components with a relative DC contribution of more than 10%, use the DCGain
property of the info
output argument.
Hsub = H(:,:,(info.DCGain>0.1)); size(Hsub);
4x1 array of state-space models. Each model has 2 outputs, 2 inputs, and 1 states.
The subset contains four modal components. Obtain the sum of modal components using modalsum
.
Gr = modalsum(Hsub,H0); order(Gr)
ans = 4
Compare the Bode responses of the two models.
bode(G,Gr,"r--")
Input Arguments
H
— Modal components
model array
Modal components, specified as an array of models. Typically, you obtain such an
array using modalsep
.
H0
— Static gain
matrix | ss
object
Static gain, specified as a matrix value or a static ss
object.
Output Arguments
G
— Sum of modal components
ss
| tf
| zpk
Sum of modal components, returned as model of same type as models in the array
H
.
Version History
Introduced in R2023b
See Also
MATLAB Command
You clicked a link that corresponds to this MATLAB command:
Run the command by entering it in the MATLAB Command Window. Web browsers do not support MATLAB commands.
Select a Web Site
Choose a web site to get translated content where available and see local events and offers. Based on your location, we recommend that you select: .
You can also select a web site from the following list
How to Get Best Site Performance
Select the China site (in Chinese or English) for best site performance. Other MathWorks country sites are not optimized for visits from your location.
Americas
- América Latina (Español)
- Canada (English)
- United States (English)
Europe
- Belgium (English)
- Denmark (English)
- Deutschland (Deutsch)
- España (Español)
- Finland (English)
- France (Français)
- Ireland (English)
- Italia (Italiano)
- Luxembourg (English)
- Netherlands (English)
- Norway (English)
- Österreich (Deutsch)
- Portugal (English)
- Sweden (English)
- Switzerland
- United Kingdom (English)
Asia Pacific
- Australia (English)
- India (English)
- New Zealand (English)
- 中国
- 日本Japanese (日本語)
- 한국Korean (한국어)