eigen_sing.m
来自「一种求解目标函数最小化的MATLAB仿真程序.」· M 代码 · 共 30 行
M
30 行
% The name of the M-file: eigeb_sing
% This M-file creates a figure window and plots the absolute magnitudes of
%left and right eigenvector of Dyg at singular point
figure(grph_fig);
set(grph_fig,...
'NumberTitle','off',...
'Name','VST-Sensitivity Information around a Singular Point',...
'DefaultAxesPosition',[0.12 0.1 0.55 0.8],...
'Color',[0.7 0.8 0.9],...
'ReSize','off');
%Plot the right eigenvector
subplot(2,1,1);
stem(abs(vpoc_sp),'r');
title(['Right and Left Eigenvector of Dyg:',CurrentSystem]);
ylabel('Null Space Vector');
xlabel('State Variables');
grid;
%plot the left eigenvector
subplot(2,1,2);
stem(abs(wpoc_sp),'r');
ylabel('Remedial Action Vector');
xlabel('State Variables');
grid;
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?