function [ A ] = buble( A )
%UNTITLED3 Summary of this function goes here
% Detailed explanation goes here
[m,n]=size(A);
for i=1:n
for j=2:n
if A(j-1)>A(j)
temp=A(j-1);
A(j-1)=A(j);
A(j)=temp;
end
end
end
end
%UNTITLED3 Summary of this function goes here
% Detailed explanation goes here
[m,n]=size(A);
for i=1:n
for j=2:n
if A(j-1)>A(j)
temp=A(j-1);
A(j-1)=A(j);
A(j)=temp;
end
end
end
end