Search

www.springer.com The European Mathematical Society

  • StatProb Collection
  • Recent changes
  • Current events
  • Random page
  • Project talk
  • Request account
  • What links here
  • Related changes
  • Special pages
  • Printable version
  • Permanent link
  • Page information
  • View source

Pole assignment problem

Let $R$ be a commutative ring and let $(A,B)$ be a pair of matrices of sizes $(n \times n)$ and $(n \times m)$, respectively, with coefficients in $R$. The pole assignment problem asks the following. Given $r_1,\ldots,r_n$, does there exist an $(m \times n)$-matrix $F$, called a feedback matrix, such that the characteristic polynomial of $A+BF$ is precisely $(X-r_1)\cdots(X - r_n)$? The pair $(A,B)$ is then called a pole assignable pair of matrices. The terminology derives from the "interpretation" of $(A,B)$ as (the essential data of) a discrete-time time-invariant linear control system: \begin{equation}\label{eq:a1} x(t+1) = Ax(t) + Bu(t) \end{equation} where $x(t) \in R^n$, $u(t) \in R^m$, or also, when $R = \mathbf{R}$ or $\mathbf{C}$, a continuous-time time-invariant linear control system: \begin{equation}\label{eq:a2} \dot x(t) = Ax(t) + Bu(t) \end{equation} where $x(t) \in R^n$, $u(t) \in R^m$.

In both cases, state feedback (see Automatic control theory ), $u \mapsto u + Fx$, changes the pair $(A,B)$ to $(A+BF,B)$.

The transfer function of a system \eqref{eq:a1} or \eqref{eq:a2} with output $y(t) = C x(t)$ is equal to \begin{equation}\label{eq:a3} T(s) = C(sI-A)^{-1}B \end{equation} and therefore the terminology "pole assignment" is used.

The pair $(A,B)$ is a coefficient assignable pair of matrices if for all $a_1,\ldots,a_n \in R$ there is an $(m\times n)$-matrix $F$ such that $A+BF$ has characteristic polynomial $X^n + a_1X^{n-1} + \cdots + a_n$.

The pair $(A,B)$ is completely reachable , reachable , completely controllable , or controllable if the columns of the $(n\times nm)$-reachability matrix \begin{equation}\label{eq:a4} (B,AB,\ldots,A^{n-1}B) \end{equation} span all of $R^n$. All four mentioned choices of terminology are used in the literature. The reachability matrix \eqref{eq:a4} is also called the controllability matrix. This terminology also derives from the "interpretations" \eqref{eq:a1} and \eqref{eq:a2} of a pair $(A,B)$, see again Automatic control theory .

A cyclic vector for an $(n\times n)$-matrix $M$ is a vector $v\in R^n$ such that $(v,MV,\ldots,M^{n-1}v)$ is a basis for $R^n$, i.e., such that $(M,v)$ is completely reachable. Now consider the following properties for a pair of matrices $(A,B)$:

a) there exist a matrix $F$ and a vector $w \in R^m$ such that $Bw$ is cyclic for $A+BF$;

b) $(A,B)$ is coefficient assignable;

c) $(A,B)$ is pole assignable;

d) $(A,B)$ is completely reachable.

Over a field these conditions are equivalent and, in general, a)$\Rightarrow$b)$\Rightarrow$c)$\Rightarrow$d). In control theory, the implication d)$\Rightarrow$a) for a field $R$ is called the Heyman lemma, and the implication d)$\Rightarrow$c) for a field $R$ is termed the pole shifting theorem.

A ring $R$ is said to have the FC-property (respectively, the CA-property or the PA-property) if for that ring d) implies a) (respectively, d) implies b), or d) implies c)). Such a ring is also called, respectively, an FC-ring, a CA-ring or a PA-ring. As noted, each field is an FC-ring (and hence a CA-ring and a PA-ring). Each Dedekind domain (cf. also Dedekind ring ) is a PA-ring. The ring of polynomials in one indeterminate over an algebraically closed field is a CA-ring, but the ring of polynomials in two or more indeterminates over any field is not a PA-ring (and hence not a CA-ring) [a4] .

For a variety of related results, see [a1] , [a2] , [a3] , [a5] .

[a1] J.W. Brewer, J.W. Bunce, F.S. van Vleck, "Linear systems over commutative rings" , M. Dekker (1986)
[a2] J. Brewer, D. Katz, W. Ullery, "Pole assignability in polynomial rings, power series rings, and Prüfer domains" , (1987) pp. 265–286
[a3] R. Bumby, E.D. Soutrey, H.J. Sussmann, W. Vasconcelos, "Remarks on the pole-shifting theorem over rings" , (1981) pp. 113–127
[a4] A. Tannenbaum, "Polynomial rings over arbitrary fields in two or more variables are not pole assignable" , (1982) pp. 222–224
[a5] J. Brewer, T. Ford, L. Kingler, W. Schmale, "When does the ring $K[g]$ have the coefficient assignment property?" , (1996) pp. 239–246
  • This page was last edited on 12 November 2017, at 20:38.
  • Privacy policy
  • About Encyclopedia of Mathematics
  • Disclaimers
  • Impressum-Legal

Help Center Help Center

  • Help Center
  • Trial Software
  • Product Updates
  • Documentation

Pole placement design

Description

Pole placement is a method of calculating the optimum gain matrix used to assign closed-loop poles to specified locations, thereby ensuring system stability. Closed-loop pole locations have a direct impact on time response characteristics such as rise time, settling time, and transient oscillations. For more information, see Pole Placement .

System with state matrix A, input matrix B, output matrix C, and feedthrough matrix D, with full state feedback matrix K

From the figure, consider a linear dynamic system in state-space form

x ˙ = A x + B u

y = C x + D u

For a given vector p of desired self-conjugate closed-loop pole locations, place computes a gain matrix K such that the state feedback u = – Kx places the poles at the locations p . In other words, the eigenvalues of A – BK will match the entries of p (up to the ordering).

K = place( A , B , p ) places the desired closed-loop poles p by computing a state-feedback gain matrix K . All the inputs of the plant are assumed to be control inputs. place also works for multi-input systems and is based on the algorithm from [1] . This algorithm uses the extra degrees of freedom to find a solution that minimizes the sensitivity of the closed-loop poles to perturbations in A or B .

[ K , prec ] = place( A , B , p ) also returns prec , an accuracy estimate of how closely the eigenvalues of A – BK match the specified locations p ( prec measures the number of accurate decimal digits in the actual closed-loop poles). A warning is issued if some nonzero closed-loop pole is more than 10% off from the desired location.

collapse all

Pole Placement Design for Second-Order System

For this example, consider a simple second-order system with the following state-space matrices:

A = [ - 1 - 2 1 0 ] B = [ 2 0 ] C = [ 0 1 ] D = 0 Spate-space matrices

Input the matrices and create the state-space system.

Compute the open-loop poles and check the step response of the open-loop system.

pole assignment problem

Notice that the resultant system is underdamped. Hence, choose real poles in the left half of the complex-plane to remove oscillations.

Find the gain matrix K using pole placement and check the closed-loop poles of syscl .

Now, compare the step response of the closed-loop system.

pole assignment problem

Hence, the closed-loop system obtained using pole placement is stable with good steady-state response.

Note that choosing poles that are further away from the imaginary axis achieves faster response time but lowers the steady-state gain of the system. For instance, consider using the poles [-2,-3] for the above system.

pole assignment problem

Pole Placement Precision

For this example, consider the pole locations [-2e-13,-3e-4,-3e-3] . Compute the precision of the actual poles.

A precision value of 2 is obtained indicating that the actual pole locations are precise up to 2 decimal places.

Pole Placement Using Complex Poles

For this example, consider the following transfer function with complex-conjugate poles at - 2 ± 2 i :

s y s t f ( s ) = 8 s 2 + 4 s + 8 Transfer function of the system

Input the transfer function model. Then, convert it to state-space form since place uses the A and B matrices as input arguments.

Next, compute the gain matrix K using the complex-conjugate poles.

The values of the gain matrix are real since the poles are self-conjugate. The values of K would be complex if p did not contain self-conjugate poles.

Now, verify the step response of the closed-loop system.

pole assignment problem

Pole Placement Observer Design

For this example, consider the following SISO state-space model:

A = [ - 1 - 0 . 7 5 1 0 ] B = [ 1 0 ] C = [ 1 1 ] D = 0 SISO State-Space Model

Create the SISO state-space model defined by the following state-space matrices:

Now, provide a pulse to the plant and simulate it using lsim . Plot the output.

pole assignment problem

For this example, assume that all the state variables cannot be measured and only the output is measured. Hence, design an observer with this measurement. Use place to compute the estimator gain by transposing the A matrix and substituting C' for matrix B . For this instance, select the desired pole locations at -2 and -3 .

Use the estimator gain to substitute the state matrices using the principle of duality/separation and create the estimated state-space model.

Simulate the time response of the system using the same pulse input.

Compare the response of the actual system and the estimated system.

pole assignment problem

Input Arguments

A — state matrix nx -by- nx matrix.

State matrix, specified as an Nx -by- Nx matrix where, Nx is the number of states.

B — Input-to-state matrix Nx -by- Nu matrix

Input-to-state matrix, specified as an Nx -by- Nu matrix where, Nx is the number of states and Nu is the number of inputs.

p — Closed-loop pole locations vector

Closed-loop pole locations, specified as a vector of length Nx where, Nx is the number of states. In other words, the length of p must match the row size of A . Closed-loop pole locations have a direct impact on time response characteristics such as rise time, settling time, and transient oscillations. For an example on selecting poles, see Pole Placement Design for Second-Order System .

place returns an error if some poles in p have multiplicity greater than rank(B) .

In high-order problems, some choices of pole locations result in very large gains. The sensitivity problems attached with large gains suggest caution in the use of pole placement techniques. See [2] for results from numerical testing.

Output Arguments

K — optimum gain ny -by- nx matrix.

Optimum gain or full-state feedback gain, returned as an Ny -by- Nx matrix where, Nx is the number of states and Ny is the number of outputs. place computes a gain matrix K such that the state feedback u = – Kx places the closed-loop poles at the locations p .

When the matrices A and B are real, K is

real when p is self-conjugate.

complex when the pole locations are not complex-conjugates.

prec — Accuracy estimate of the assigned poles scalar

Accuracy estimate of the assigned poles, returned as a scalar. prec measures the number of accurate decimal digits in the actual closed-loop poles in contrast to the pole locations specified in p .

You can use place for estimator gain selection by transposing the A matrix and substituting C' for matrix B as follows, as shown in Pole Placement Observer Design . You can use the resultant estimator gain for state estimator workflows using estim .

[1] Kautsky, J., N.K. Nichols, and P. Van Dooren, "Robust Pole Assignment in Linear State Feedback," International Journal of Control, 41 (1985), pp. 1129-1155.

[2] Laub, A.J. and M. Wette, Algorithms and Software for Pole Assignment and Observers , UCRL-15646 Rev. 1, EE Dept., Univ. of Calif., Santa Barbara, CA, Sept. 1984.

Version History

Introduced before R2006a

lqr | rlocus | estim

  • Pole Placement

External Websites

  • MATLAB Tech Talks – Pole Placement

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: .

  • Switzerland (English)
  • Switzerland (Deutsch)
  • Switzerland (Français)
  • 中国 (English)

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.

  • América Latina (Español)
  • Canada (English)
  • United States (English)
  • 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)
  • United Kingdom (English)

Asia Pacific

  • Australia (English)
  • India (English)
  • New Zealand (English)

Contact your local office

Pole–Zero Placement Problem with Time Delay for High-Order Systems

  • Published: 11 March 2017
  • Volume 36 , pages 4354–4364, ( 2017 )

Cite this article

pole assignment problem

  • Lei Zhang 1 &
  • Feng Shan 1  

448 Accesses

3 Citations

Explore all metrics

The pole–zero assignment problem for high-order systems with time delay is addressed. The approach described here uses measured receptances absolutely without requirements for the system matrices. Our solution is easy to achieve and need not solve the Sylvester equation or turn high-order systems into the first-order form. The method is supplemented by a series of illustrative numerical examples.

This is a preview of subscription content, log in via an institution to check access.

Access this article

Subscribe and save.

  • Get 10 units per month
  • Download Article/Chapter or eBook
  • 1 Unit = 1 Article or 1 Chapter
  • Cancel anytime

Price includes VAT (Russian Federation)

Instant access to the full article PDF.

Rent this article via DeepDyve

Institutional subscriptions

Similar content being viewed by others

pole assignment problem

Partial pole assignment using rank-one control and receptance in second-order systems with time delay

pole assignment problem

Stabilization of Linear Control Systems and Pole Assignment Problem: A Survey

pole assignment problem

PPSA: A Tool for Suboptimal Control of Time Delay Systems: Revision and Open Tasks

J. Ackermann, Der entwurf linearer regelungssyteme im zustandsraum. Regelung. Proz. Datenverarb. 7 , 297–300 (1972)

MATH   Google Scholar  

E.K. Chu, B.N. Datta, Numerically robust pole assignment for second-order systems. Int. J. Control 64 (4), 1113–1127 (1996)

Article   MathSciNet   MATH   Google Scholar  

B.N. Datta, S. Elhay, Y.M. Ram, Orthogonality and partial pole assignment for the symmetric definite quadratic pencil. Linear Algebr. Appl. 257 , 29–48 (1997)

F. Delebecque, R. Nikoukhah, Control of linear systems under state-control constrains. Circuits Syst. Signal Process. 13 (2), 361–372 (1994)

Article   MATH   Google Scholar  

G.R. Duan, H.H. Yu, Robust pole assignment in high-order descriptor linear systems via proportional plus derivative state feedback. IET Control Theory Appl. 2 (4), 277–287 (2008)

Article   MathSciNet   Google Scholar  

H.J. Lei, Y. Wei, Y. Zhu, Response matrix method to separate relative static response under multi-support excitation. Chian Civil Eng. J. 46 , 75–80 (2013)

Google Scholar  

S.J. Linz, Nonlinear dynamical models and jerky motion. Am. J. Phys. 65 , 523–526 (1997)

Article   Google Scholar  

H. Liu, Y.X. Yuan, A multi-step method of partial quadratic pole assignment problem with time delay. Appl. Math. Comput. 283 , 29–35 (2016)

MathSciNet   Google Scholar  

J.E. Mottershead, A. Kyprianou, H. Ouyang, Structural modification. Part 1: rotational receptances. J. Sound Vib. 284 (1–2), 249–265 (2005)

J.E. Mottershead, M. Ghandchi Tehrani, D. Stancioiu, S. James, H. Shahverdi, Structural modification of a helicopter tailcone. J. Sound Vib. 298 (1–2), 366–384 (2006)

J.E. Mottershead, M.G. Tehrani, Y.M. Ram, Assignment of eigenvalue sensitivities from receptance measurements. Mech. Syst. Signal Process. 23 (2), 1931–1939 (2009)

J.E. Mottershead, M.G. Tehrani, S. James, Y.M. Ram, Active vibration suppression by pole–zero placement using measured receptances. J. Sound Vib. 311 , 1391–1408 (2008)

J. Pratt, K. Singh, B.N. Datta, Quadratic partial eigenvalue assignment problem with time delay for active vibration control. J. Phys. Conf. Ser. IOP Publishing 181 , 012–092 (2009)

J. Qian, S. Xu, Robust partial eigenvalue assignment problem for the second-order system. J. Sound Vib. 282 (3–5), 937–948 (2005)

Y.M. Ram, J.E. Mottershead, Receptance method in active vibration control. J. Am. Inst. Aeronaut. Astronaut. 45 (3), 562–567 (2007)

Y.M. Ram, J.E. Mottershead, Multiple-input active vibration control by partial pole placement using the method of receptance. Mech. Syst. Signal Process. 40 (1), 726–735 (2013)

Y.M. Ram, J.E. Mottershead, M. Tehrani, Partial pole placement with time delay in structures using the receptance and the system matrices. Linear Algebr. Appl. 434 (7), 1689–1696 (2011)

Y.M. Ram, Pole–zero assignment of vibratory systems by state feedback control. J. Vib. Control 4 , 145–165 (1998)

Y. Ram, A. Singh, J. Mottershead, State feedback control with time delay. Mech. Syst. Singal Process. 23 , 1940–1945 (2009)

M. Ramadan, E. El-Sayed, Partial eigenvalue assignment problem of high order control systems using orthogonality relations. Comput. Math. Appl. 59 (6), 1918–1928 (2010)

X.T. Wang, L. Zhang, Partial eigenvalue assignment of high order systems with time delay. Linear Algebr. Appl. 438 , 2174–2187 (2013)

X.J. Wei, J.E. Mottershead, Y.M. Ram, Partial pole placement by feedback control with inaccessible degrees of freedom. Mech. Syst. Signal Process. 70–71 , 334–344 (2016)

X.J. Wei, J.E. Mottershead, Block-decoupling vibration control using eigenstrcture assignment. Mech. Syst. Signal Process. 76 , 11–28 (2016)

W.M. Wonham, On pole assignment in multi-input controllable linear systems. IEEE Trans. Autom. Control AC–12 (6), 660–665 (1976)

L. Zhang, Multi-input partial eigenvalue assignment for high order control systems with time delay. Mech. Syst. Signal Process. 72–73 , 376–382 (2016)

Download references

Acknowledgements

The authors are very grateful to the reviewers for their helpful comments and suggestions. This work was supported by the National Natural Science Foundation of China under Grant No. 10871056, the Provincial Department of Science and Technology of Liaoning under Grant No. 201601173, and the Fundamental Research Foundation for Shenyang Aerospace University under Grant No. 15YB25.

Author information

Authors and affiliations.

College of Sciences, Shenyang Aerospace University, Shenyang, 110136, China

Lei Zhang & Feng Shan

You can also search for this author in PubMed   Google Scholar

Corresponding author

Correspondence to Lei Zhang .

Rights and permissions

Reprints and permissions

About this article

Zhang, L., Shan, F. Pole–Zero Placement Problem with Time Delay for High-Order Systems. Circuits Syst Signal Process 36 , 4354–4364 (2017). https://doi.org/10.1007/s00034-017-0535-4

Download citation

Received : 30 August 2016

Revised : 22 February 2017

Accepted : 02 March 2017

Published : 11 March 2017

Issue Date : November 2017

DOI : https://doi.org/10.1007/s00034-017-0535-4

Share this article

Anyone you share the following link with will be able to read this content:

Sorry, a shareable link is not currently available for this article.

Provided by the Springer Nature SharedIt content-sharing initiative

  • Pole assignment
  • Zero assignment
  • High-order systems
  • Receptance method
  • Find a journal
  • Publish with us
  • Track your research
  • DOI: 10.1002/OCA.4660110302
  • Corpus ID: 123397864

Optimal pole assignment into specified regions and its applications to rotating mechanical systems

  • J. Kim , C. Lee
  • Published 1 June 1990
  • Engineering
  • Optimal Control Applications & Methods

14 Citations

Eigenvalue placement for variable structure control systems, isotropic optimal control of active magnetic bearing system, eigenvalue assignment for stabilizing unstable conical modes of rigid rotor-active magnetic bearing system over high rotational speed range, optimal control with regional pole constraints: an algebraic matrix equation approach, proportional-integral-derivative control of rigid rotor-active magnetic bearing system via eigenvalue assignment for decoupled translational and conical modes, multi-degree-of-freedom rotor-bearing systems, eigenvalue placement in a specified sector for variable structure control systems, optimal static output feedback simultaneous regional pole placement, a new method for mixed h2/h∞ control with regional pole constraints, the feasibility of eigenstructure assignment for machining chatter control, 20 references, optimal pole shifting for continuous multivariable linear systems, pole assignment in a specified disk, pole assignment in rotating disk vibration control using complex modal state feedback, determining quadratic weighting matrices to locate poles in a specified region, a theory of modal control, optimal pole allocation and weighting matrix selection, optimal magnetic bearing control for high-speed momentum wheels, recursive eigenstructure assignment in linear systems, modal analysis of a distributed parameter rotating shaft, design of optimal control systems with prescribed eigenvalues, related papers.

Showing 1 through 3 of 0 Related Papers

IEEE Account

  • Change Username/Password
  • Update Address

Purchase Details

  • Payment Options
  • Order History
  • View Purchased Documents

Profile Information

  • Communications Preferences
  • Profession and Education
  • Technical Interests
  • US & Canada: +1 800 678 4333
  • Worldwide: +1 732 981 0060
  • Contact & Support
  • About IEEE Xplore
  • Accessibility
  • Terms of Use
  • Nondiscrimination Policy
  • Privacy & Opting Out of Cookies

A not-for-profit organization, IEEE is the world's largest technical professional organization dedicated to advancing technology for the benefit of humanity. © Copyright 2024 IEEE - All rights reserved. Use of this web site signifies your agreement to the terms and conditions.

IMAGES

  1. (PDF) The Robust Pole Assignment Problem for Second-Order Systems

    pole assignment problem

  2. Solved 4. The pole assignment problem for the inverted

    pole assignment problem

  3. The Benefits of Pole

    pole assignment problem

  4. (PDF) A note on pole assignment

    pole assignment problem

  5. (PDF) Robust pole assignment

    pole assignment problem

  6. Fitness Fridays: the benefits of pole dancing

    pole assignment problem

VIDEO

  1. Pole Placement in Matlab using the "place" Command, 11/4/2016

  2. Problem with pole for pole vaulter. #olympics #shorts

  3. Pole Assignment: PID General Algorithms

  4. MTN Sense Crevasse Safety Video Assignment

  5. climbing a pole no problem

  6. Horse Training: Zigzag Pole-work Exercise (ground work and ridden)

COMMENTS

  1. Pole assignment problem

    R. Bumby, E.D. Soutrey, H.J. Sussmann, W. Vasconcelos, "Remarks on the pole-shifting theorem over rings" J. Pure Appl. Algebra, 20 (1981) pp. 113-127 [a4] A. Tannenbaum, "Polynomial rings over arbitrary fields in two or more variables are not pole assignable" Syst. Control Lett. , 2 (1982) pp. 222-224

  2. PDF POLE ASSIGNMENT FOR LINEAR SYSTEMS

    The pole assignment problem for a single-input controllable system is relatively straightforward to solve. The pole assignment problem for multivariable systems, to be presented in the next section, is considerably harder. Interestingly enough though, its solution relies on the solution of the single-input case.

  3. Stabilization of Linear Control Systems and Pole Assignment Problem: A

    Abstract This paper reviews the problems of stabilization and pole assignment in the control of linear time-invariant systems using the static state and output feedback. The main results are presented, along with a literature review. Stationary and nonstationary stabilizations with the static feedback are considered. The algorithms of low- and high-frequency stabilization of linear systems for ...

  4. Robust partial pole assignment problem for high order control systems

    Abstract. In this paper, we consider the partial pole assignment problem (PPAP) for high order control systems. It is shown that solving the PPAP is essentially solving a pole assignment for a linear system of a much lower order, and the robust PPAP is then concerning the robust pole assignment problem for this linear system.

  5. Pole placement design

    In high-order problems, some choices of pole locations result in very large gains. The sensitivity problems attached with large gains suggest caution in the use of pole placement techniques. ... , Algorithms and Software for Pole Assignment and Observers, UCRL-15646 Rev. 1, EE Dept., Univ. of Calif., Santa Barbara, CA, Sept. 1984 . Version ...

  6. A general framework for pole assignment algorithms

    The problem of pole assignment by gain output feedback or by low-order dynamical compensator is considered from a geometrical point of view. This allows unification of a general framework for most of the existing pole assignment methods formulated in a state-space context, such as the minimal-order observers, the F.M. Brasch and J.B. Pearson (1970) compensator, the methods proposed by H ...

  7. The generalized pole assignment problem

    The generalized pole assignment problem Abstract: For some Linear, strictly proper system given by its transfer function, two dynamic output feedback problems can be posed. The first one is that of using dynamic-output feedback to assign the closed-loop characteristic polynomial and the second that of assigning the closed-loop invariant factors.

  8. Parametric Pole Assignment and Robust Pole Assignment for Discrete-Time

    This paper considers pole assignment and robust pole assignment problems for discrete-time linear periodic systems by using linear periodic state feedback. The monodromy matrix of the closed-loop system is represented in a special form. By combining this special form with our recent result on solutions to a class of generalized Sylvester matrix equations, a complete parametric approach for ...

  9. Pole assignment via Sylvester's equation

    Pole assignment via Sylvester's equation. It is shown that the pole assignment problem can be reduced to solving the linear matrix equations AX − XA = −BG, FX = G successively for X, and then F for almost any choice of G. The result is a new pole assignment procedure and proof of the pole assignment theorem that should play an important ...

  10. Pole assignment problem for a second-order system

    Provided by the Springer Nature SharedIt content-sharing initiative. We solve the pole assignment problem for a second-order two-input-two-output linear dynamical system with the use of a static feedback control.

  11. Pole assignment of high-order linear systems with high-order time

    The periodic state feedback pole assignment problem of high-order periodic discrete systems is investigated, and the pole assignment problem for such systems is transformed into a class of problems for resolving periodic Sylvester matrix equations with constraints. Using the technique of cyclic lifting, such equations can be transformed into ...

  12. Approaches to robust pole assignment

    Abstract. Robust pole assignment is a non-linear optimization problem in many variables. We describe numerical methods for determining robust or well-conditioned so-lutions to the problem of pole assignment by state feedback. The solutions are chosen to minimize various objective functions based on the condition number of the eigenvector matrix.

  13. Pole assignment in a specified disk

    The problem of assigning all poles of a closed-loop system in a specified disk by state feedback is considered for both continuous and discrete systems. A state feedback control law is determined by using a discrete Riccati equation. This kind of pole assignment problem is named D -pole assignment, and its relation to the optimal control ...

  14. Partial pole assignment using rank-one control and ...

    The partial pole assignment problem for the quadratic closed loop pencil is defined as the problem of finding \(\mathbf{f}\) and \(\mathbf{g}\) which assign a certain number of closed-loop poles to prescribed values, while keeping the remaining poles unchanged, with respect to the open-loop spectrum .

  15. PDF Data-Driven Exact Pole Placement for Linear Systems

    A. Problem formulation. Consider the discrete-time linear time-invariant system: x(t + 1) = Ax(t) + Bu(t), Assumption 1 (Desired set of pole locations): The set of desired pole locations contains n complex numbers L = {λ1, . . . , λn} and is closed under complex conjugation. . The data-driven state-feedback pole placement problem can now be ...

  16. A parametric poles assignment algorithm for high-order linear discrete

    The periodic state feedback pole assignment problem of high-order periodic discrete systems is investigated, and the pole assignment problem for such systems is transformed into a class of problems for resolving periodic Sylvester matrix equations with constraints. Using the technique of cyclic lifting, such equations can be transformed into ...

  17. PDF Stabilization of Linear Control Systems and Pole Assignment Problem: A

    Abstract—This paper reviews the problems of stabilization and pole assignment in the control of linear time-invariant systems using the static state and output feedback. The main results are presented, along with a literature review. Stationary and nonstationary stabilizations with the static feedback are considered.

  18. Pole assignment by gain output feedback

    Abstract: This short paper deals with the problem of pole assignment with incomplete state observation. It is shown that if the system is controllable and observable, and if n \leq r + m - 1, an almost arbitrary set of distinct closed-loop poles is assignable by gain output feedback, where n, r, and m are the numbers of state variables, inputs and outputs, respectively.

  19. Stabilization of Linear Control Systems and Pole Assignment Problem: A

    Stabilization of Linear Control Systems and Pole Assignment Problem: A Survey. October 2019. Vestnik St Petersburg University Mathematics 52 (4):349-367. DOI: 10.1134/S1063454119040095. Authors:

  20. Pole-Zero Placement Problem with Time Delay for High-Order Systems

    The pole-zero assignment problem for high-order systems with time delay is addressed. The approach described here uses measured receptances absolutely without requirements for the system matrices. Our solution is easy to achieve and need not solve the Sylvester equation or turn high-order systems into the first-order form. The method is supplemented by a series of illustrative numerical ...

  21. Robust pole assignment for synthesizing fractional-order control

    In this paper, a neurodynamic optimization approach is proposed for robust pole assignment of fractional-order control systems. Compared with integral-order systems, the pole assignment of fractional-order systems is more challenging due to variability of stability region. The robust pole assignment is formulated as a constrained optimization problem, and a robustness measure is derived as a ...

  22. Optimal pole assignment into specified regions and its applications to

    This paper considers a pole assignment problem to cluster all poles of a closed-loop system into some specified regions by introducing the complex state for systems having an isotropic property and by using the Riccati equation. The algebraic relations for the distribution of the eigenvalues of a complex matrix are used in order to cluster the poles into specified regions, which guarantees the ...

  23. The general problem of pole assignment: A polynomial equation approach

    The problem of modifying the invariant polynomials of a linear system by dynamical output feedback is considered. A new necessary condition which the invariant polynomials must satisfy is derived. The sufficiency condition of Rosenbrock and Hayton is proved in an alternative way. The proof is based on polynomial matrix equations and provides a simple construction of the feedback which affects ...