I have different answer using 'norm'. Do I miss something?

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!

 Accepted Answer

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

3 Comments

I got it!thanks, Torsten!!
@penyao lu: the best way for you to say "thank you" is to accept Torsten's answer.
thx for your remind! Stephen.

Sign in to comment.

More Answers (0)

Categories

Tags

Asked:

on 15 Aug 2017

Commented:

on 15 Aug 2017

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!