⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 eigen_vec.m

📁 一种求解目标函数最小化的MATLAB仿真程序.
💻 M
字号:
% The name of the M-file: eigeb_vec
% This M-file creates a figure window and plots the absolute magnitudes of
%left and right eigenvector of the load flow Jacobian matrix at the point 
% of collapse.

figure(grph_fig);
set(grph_fig,...
   'NumberTitle','off',...
   'Name','VST-Sensitivity and Remedial Information',...
   '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),'r');
title(['Right and Left Eigenvector:',CurrentSystem]);
ylabel('Null Space Vector');
xlabel('State Variables');
grid;

%plot the left eigenvector
subplot(2,1,2);
stem(abs(wpoc),'r');
ylabel('Remedial Action Vector');
xlabel('State Variables');
grid;
gcontrol1;


   

⌨️ 快捷键说明

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