%%%%%%%%%%%%%%%%%%%%% Triangle Type %%%%%%%%%%%%%%%%%%% % % TRITYPE % Usage: TRITYPE(p,q,r) % % Inputs: p,q,r - integers % Output: a string indicating the triangle type % function w = tritype(p,q,r) w = [inttostr(p) '-' inttostr(q) '-' inttostr(r)];