?? grcobase.m
字號:
function CBG=grCoBase(E)
% Function CBG=grCoBase(E) find all contrabases of digraph.
% Input parameter:
% E(m,2) - the arrows of digraph;
% 1st and 2nd elements of each row is numbers of vertexes;
% m - number of arrows.
% Output parameter:
% CBG(ncb,nv) - the array with numbers of vertexes.
% ncb - number of contrabasis;
% nv - number of vertexes in each contrabasis.
% In each row of the array BG is numbers
% of vertexes of this contrabasis.
% Author: Sergiy Iglin
% e-mail: siglin@yandex.ru
% personal page: http://iglin.exponenta.ru
E=E(:,[2 1]);
CBG=grBase(E);
return
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -