Open in the MATLAB editor: f01ck_example
function f01ck_example fprintf('f01ck example results\n\n'); % Matrices B and C b = [0, 1, 2; 1, 2, 3]; c = [0, 1; 1, 2; 2, 3]; % Calculate A = BC opt = int64(1); [a, b, c, ifail] = f01ck(b, c, opt); disp('Martix A'); disp(a);
f01ck example results Martix A 5 8 8 14