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);

Answers (0)

Categories

Find more on Genomics and Next Generation Sequencing in Help Center and File Exchange

Asked:

Abe
on 1 Jul 2015

Commented:

on 1 Jul 2015

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!