% Regression test function (black blox) for FreeMat v3.5 % This function is autogenerated by helpgen. function bbtest_success = bbtest_transpose bbtest_success = 1; NumErrors = 0; try A = [1+i,2+i;3-2*i,4+2*i] catch NumErrors = NumErrors + 1; end try transpose(A) catch NumErrors = NumErrors + 1; end if (NumErrors ~= 0) bbtest_success = 0; return; end