MATLAB: I have different answer using ‘norm’. Do I miss something

norm

A = [1 2; 3 4];
norm(A) >> 5.4650
But equivalently,
sqrt(1^2 + 2^2 + 3^2 + 4^2) >> 5.4772
the answer is different
Do I miss something? thx!

Best Answer

norm(A) and norm(A,'fro') are different things.
Best wishes
Torsten.