Undefined function 'biograph' for input arguments of type 'double'.
이전 댓글 표시
I've installed the Bioinformatics Toolbox. But it still kept telling me "Undefined". How to fix it? And here is the project.
a=[319;680;180;690;129;620;762;689;762;318;368;710;...
720;710;629;168;160;689;716;731;736;729;316;729;...
729;710;769;290;719;680;318;389;162;289;162;718;...
729;319;790;680;890;362;319;760;316;729;380;319;...
728;716];
b=num2str(a);
node=[];
map=[];
for ii=1:size(b,1)
temp=b(ii,:);
for jj=1:3
if isempty(find(node==temp(jj),1))
node=[node, temp(jj)];
siz=length(node);
map(siz,siz)=0;
end
end
map(node==temp(1),node==temp(2))=1;
map(node==temp(2),node==temp(3))=1;
end
bg = biograph(map,node);
view(bg);
댓글 수: 1
Muthu Annamalai
2015년 7월 1일
Can you please post the output for the command,
which biograph
답변 (0개)
카테고리
도움말 센터 및 File Exchange에서 Genomics and Next Generation Sequencing에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!