chlpe.m

来自「一种求解目标函数最小化的MATLAB仿真程序.」· M 代码 · 共 16 行

M
16
字号

% The name of the M-file:chlpe.m% It plots the location of eigenvalues at each load point% **********************************************************figure('NumberTitle','off','Name','VST- Loci of Eigenvalues of System Matrix',...   'Color',[0.7 0.8 0.9]);
plot(real(sys_eig),imag(sys_eig),'bx');title(['Eigenvalue Location: ',CurrentSystem]);

xlabel('Real');
ylabel('Imaginary');
title(['Eigenvalue Location: ',CurrentSystem]);
grid;

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?