% Define matrix A
A = [1, 6, 3; 0, 5, 6; 7, 1, 2];
% Calculate the inverse of matrix A
inverse_A = inv(A);
% Display the result
disp('The inverse of matrix A is:');
disp(inverse_A);
To embed this project on your website, copy the following code and paste it into your website's HTML: