Norm of a vector
1 view (last 30 days)
Show older comments
Hi,
I would like to ask if there is any simple way of calculating norm of vector rather than using built-in function norm?
0 Comments
Answers (1)
Roger Stafford
on 12 Feb 2014
For the "L2" norm of a vector v you can use
sqrt(sum(v.^2))
This is only one form of the 'norm' function. See the documentation for others.
0 Comments
See Also
Categories
Find more on Startup and Shutdown in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!