Balanced Truncation

Script for obtaining balanced truncation for a given system
2.1K 次下载
更新时间 2008/9/11

查看许可证

The script computes the reduced order model of a given system using Balanced Truncation technique. Both stable and unstable systems can be handled here.

NewR=BalanceTrunc(A,B,C,D,orders)
Where A,B,C,D are the system matrices of the state space representation and orders is the order of the reduced order model.

In addition to matrices, state space object is also accepted by the script.

NewR=BalanceTrun(sys,orders)
In this format, the state space model sys is reduced to a 'orders'-order model.

It may also be noted that the function can also be used as BalanceTrunc(A,B,C,D) OR BalanceTrunc(sys), i.e., without specifying the desired reduced order. In which case, all feasible
reduced order realizations are presented as a cell array of state space objects.

引用格式

Janardhanan Sivaramakrishnan (2024). Balanced Truncation (https://www.mathworks.com/matlabcentral/fileexchange/21393-balanced-truncation), MATLAB Central File Exchange. 检索来源 .

MATLAB 版本兼容性
创建方式 R14
兼容任何版本
平台兼容性
Windows macOS Linux

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!
版本 已发布 发行说明
1.0.0.0

Errors regarding variable 'ips' corrected. Code improved slightly.