algebeig.m
来自「一种求解目标函数最小化的MATLAB仿真程序.」· M 代码 · 共 13 行
M
13 行
%The name of the M-file:algebeig.m
%It provides the plot of the eigenvalues of Jacobian matrix Dyg
% at each parameter value
figure('NumberTitle','off','Name','VST- loci of Eigenvalues of Load-Flow Jacobian Matrix',...
'Color',[0.7 0.8 0.9]);
plot(real(Dyg_eig),imag(Dyg_eig),'rx');title(['Eigenvalue Location: ',CurrentSystem]);
xlabel('Real');
ylabel('Imaginary');
grid;
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?