matlab mxgetir,如何在Matlab中找到连接的组件?

小编典典

建立图表并使用 graphconncomp

G = sparse( A(:,1), A(:,2), 1, max(A(:)), max(A(:)) );

G = G + G.'; %' make graph undirected

[S C] = graphconncomp( G ); % find connected components

对于那些没有生物信息学工具箱的人

我graphconncomp在mex中的实现:

的代码 graph_conn_comp.m

function [l c] = graph_conn_comp(sA)

%

% Computing connected components of an undirected graph - assuming sA is symmetric

%

% Usage:

% [l c] = graph_conn_comp(sA);

%

% Inputs:

% sA - sparse adjacency matrix (for directed graph - does not have to be symmetric)

%

% Outputs:

% l - components labels

% c - number of connected components

%

%

% Compile using:

% >> mex -O -largeArrayDims graph_conn_comp_mex.cpp

%

%

sA = spfun(@(x) ones(size(x)),sA);

if ~isequal(sA, sA')

[ii jj] = find(sA);

sA = sparse([ii jj],[jj ii], ones(1, 2*numel(ii)), size(sA,1), size(sA,2));

end

[l c] = graph_conn_comp_mex(sA);

l = double(l); % make it compatible of the rest of Matlab

使用以下代码graph_conn_comp_mex.cpp在matlab中编译的 代码

>> mex -largeArrayDims -O graph_conn_comp_mex.cpp

#include "mex.h"

#include // for memset

/*

* Computing connected components of an undirected graph - assuming sA is symmetric

*

* Usage:

* [l c] = graph_conn_comp_mex(sA);

*

* Inputs:

* sA - sparse adjacency matrix (for directed graph - does not have to be symmetric)

*

* Outputs:

* l - components labels

* c - number of connected components

*

*

* Compile using:

* >> mex -O -largeArrayDims graph_conn_comp_mex.cpp

*

*/

#line __LINE__ "graph_conn_comp_mex"

#define STR(s) #s

#define ERR_CODE(a,b) a ":" "line_" STR(b)

// inputs

enum {

AIN = 0,

NIN };

// outputs

enum {

LOUT = 0,

COUT,

NOUT };

void

ConnComp(const mxArray* sA, unsigned int* pl, const double* pnc, mwIndex start_node);

mwIndex

FindUnLabeled(unsigned int* pl, mwIndex n);

void mexFunction(

int nout,

mxArray* pout[],

int nin,

const mxArray* pin[]) {

if ( nin != NIN )

mexErrMsgIdAndTxt(ERR_CODE(__FILE__, __LINE__),"must have %d inputs", NIN);

if (nout==0)

return;

if (nout != NOUT )

mexErrMsgIdAndTxt(ERR_CODE(__FILE__, __LINE__),"must have exactly %d output", NOUT);

if ( mxIsComplex(pin[AIN]) || !mxIsSparse(pin[AIN]) )

mexErrMsgIdAndTxt(ERR_CODE(__FILE__, __LINE__),"sA must be real sparse matrix");

if ( mxGetM(pin[AIN]) != mxGetN(pin[AIN]) )

mexErrMsgIdAndTxt(ERR_CODE(__FILE__, __LINE__),"sA must be square matrix");

mwIndex n = mxGetM(pin[AIN]); // number of variables

mwIndex ii(0);

// allocate outputs

pout[LOUT] = mxCreateNumericMatrix(1, n, mxUINT32_CLASS, mxREAL);

unsigned int* pl = (unsigned int*)mxGetData(pout[LOUT]);

memset(pl, 0, n*sizeof(unsigned int)); // set initial labels to zero

unsigned int cl = 0;

// number of components

pout[COUT] = mxCreateDoubleMatrix(1, 1, mxREAL);

double* pnc = mxGetPr(pout[COUT]);

pnc[0] = 0; // number of components

ii = 0;

do {

ConnComp(pin[AIN], pl, pnc, ii); // find conn comp

pnc[0]++;

ii = FindUnLabeled(pl, n);

} while ( ii < n );

}

mwIndex

FindUnLabeled(unsigned int* pl, mwIndex n) {

for ( mwIndex ii(0); ii

if ( pl[ii]==0 ) {

return ii;

}

}

return n+1;

}

void

ConnComp(const mxArray* sA, unsigned int* pl, const double* pnc, mwIndex start_node) {

mwIndex n = mxGetM(sA);

unsigned int curr_label = (unsigned int)(pnc[0]+1);

mwIndex *stack = (mwIndex*)mxMalloc( (n)*sizeof(mwIndex) );

memset(stack, 0, (n)*sizeof(mwIndex));

mwIndex sp(0); // stack pointer

// put start_node on top of stack after labeling it

pl[start_node]=curr_label;

stack[sp] = start_node;

sp++;

mwIndex* pir = mxGetIr(sA);

mwIndex* pjc = mxGetJc(sA);

mwIndex ii(0), neighbor(0);

while ( sp > 0 ) {

// pop start_label from stack

sp--;

start_node = stack[sp];

for ( ii = pjc[start_node] ; ii < pjc[start_node+1] ; ii++ ) {

neighbor = pir[ii];

if (pl[neighbor]==0) { // unlabeled

pl[neighbor] = curr_label; // label it

// push it into stack

stack[sp] = neighbor;

sp++;

} else {

if (pl[neighbor]!=curr_label)

mexErrMsgIdAndTxt(ERR_CODE(__FILE__, __LINE__),"Got mixed labeling %d %d",pl[neighbor], curr_label);

}

}

}

mxFree(stack);

}

2020-07-28

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值