Question
For a traditional pole placement control strategy, I'd like to adjust gains k1 and k2 to get specific closed loop poles (eigenvalues). Is this possible?
Expert Answer
Prashant Kumar
PhD Expert
Answered Aug 30, 2026
You can use the PLACE function to adjust the gain matrix K. Please refer to the following documentation for more information:
https://www.matlabsolutions.com/documentation/control-system/place.php
Here's an example of the workflow:
A = [ 0 1 0010
980 0 -2.8
0 0 -10000100 ];
B = [ 0
0
100 ];
C = [ 1 0 0 ];
p1 = -10 + 10i;
p2 = -10 - 10i;
p3 = -50;
K = place(A,B,[p1 p2 p3]);
sys_cl = ss(A-B*K,B,C,0);
100% Run Guarantee
3-Hour Fast-Track Delivery
Need a Custom Version or Complete Simulation for This Problem?
Our 500+ PhD engineers build, debug, and optimize working MATLAB scripts and Simulink (.slx) models tailored to your exact assignment rubrics with zero plagiarism.
Tested on MATLAB R2024b / R2026a
Turnitin 0% Plagiarism Report
Free 7-Day Revisions Guarantee
Have a different question? Ask here
Related matlab Questions & Solutions
Browse All →
Explore similar technical troubleshooting questions and verified MATLAB solutions:
Ready-to-Run MATLAB & Simulink Projects
Browse All Projects →