Hi,
I understand that you want to import root-locus plots from the Control System Designer to MATLAB figures.
One of the possible workaround for the same is extracting the data from the Control System Designer and then plotting it manually in MATLAB.
Please refer to the following steps as a possible workaround:
- Open Control System Designer and Generate "Root-Locus" plot.
- Export the system data and use it in MATLAB to recreate the root-locus plot. To extract the system data you can use the following command in the MATLAB Command Window.
sys = tf(your_system_in_CSD);
- Use the "rlocus" function in MATLAB to plot the root locus. Please refer to the following code snippet as an example.
title('Root-Locus Plot');
ylabel('Imaginary Axis');
saveas(gcf, 'RootLocusPlot.png');
Please refer to the following MathWorks documentation for "rlocus" function.
Hope this helps!