gistlib
To solve the matrix equation ([2, 0; 0, 3] \cdot A = [1, 2, 3; 4, 5, 6]) in MATLAB, you can follow these steps:
main.mA = [2, 0; 0, 3]; B = [1, 2, 3; 4, 5, 6]; 42 chars3 lines
A = [2, 0; 0, 3]; B = [1, 2, 3; 4, 5, 6];
main.mA_solution = B / A; disp(A_solution); 38 chars3 lines
A_solution = B / A; disp(A_solution);
This will give you the solution matrix A that satisfies the equation.
gistlibby LogSnag