modal_control {netcontrol}R Documentation

Modal Control

Description

Calculates the modal control (Hamdan and Nayfeh 1989) of a system defined by x(t+1)=Ax(t)+Bu(t)x_(t+1) = Ax_(t) + Bu_(t).

Usage

modal_control(A, B)

Arguments

A

A nxnn x n matrix.

B

A nxmn x m matrix.

Value

A mxnm x n matrix representing the control of the nnth mode by the mth control input.

Examples

A = matrix(c(0,-3,-2,2,-2,1,-1,2,-1), 3,3)
B = diag(3)

modal_control(A, B)

[Package netcontrol version 0.1 Index]