Magnitude of a vector

조회 수: 2,706 (최근 30일)
Philosophaie
Philosophaie 2013년 9월 5일
댓글: Steven Lord 2023년 3월 11일
syms x y z
r = [x y z]
rmag???
rmag should equal (x^2 + y^2 + z^2)^0.5
  댓글 수: 4
Prashant C
Prashant C 2015년 6월 3일
use the function norm(r) or mag=sqrt(sum(r.*r))
Abdullraheem Diab
Abdullraheem Diab 2019년 6월 30일
Sqrt(sum(r.^2))

댓글을 달려면 로그인하십시오.

채택된 답변

Shashank Prasanna
Shashank Prasanna 2013년 9월 5일
편집: MathWorks Support Team 2019년 5월 22일
This works perfectly fine on MATLAB R2013a:
>> syms x y z
r = [x y z];
norm(r)
  댓글 수: 2
Shashank Prasanna
Shashank Prasanna 2013년 9월 5일
편집: MathWorks Support Team 2019년 5월 22일
What version of MATLAB are you using? Can you confirm that you see the file when you run this:
>> which sym/norm
Bhuvana Krishnaraj
Bhuvana Krishnaraj 2019년 6월 3일
2015.a version >>which sym/nom C:\matlab\toolbox\symbolic\@!sym\norm.m

댓글을 달려면 로그인하십시오.

추가 답변 (2개)

Azzi Abdelmalek
Azzi Abdelmalek 2013년 9월 5일
m=sqrt(x^2+y^2+z^2)

Tariq Shajahan
Tariq Shajahan 2015년 5월 11일
if 'r' is a vector. norm(r), gives the magnitude only if the vector has values. If r is an array of vectors, then the norm does not return the magnitude, rather the norm!!
  댓글 수: 2
John D'Errico
John D'Errico 2023년 3월 11일
If r is an array of vectors, what would you expect? How does MATLAB know, for example, that you want to compute the norm of each row of an array, as opposed to a matrix norm? In fact, when MATLAB is given a double precision array, and you use norm, it computes the MATRIX norm.
A = magic(5)
A = 5×5
17 24 1 8 15 23 5 7 14 16 4 6 13 20 22 10 12 19 21 3 11 18 25 2 9
norm(A)
ans = 65
There is no reason to expect it should instead compute the norm of each row, or each column. That would be wrong.
norm(sym(A))
ans = 
65
And norm is able to do the same thing for a symbolic array. So there should be no surprise here.
Steven Lord
Steven Lord 2023년 3월 11일
To compute the norm of each row or column of a numeric matrix use vecnorm instead of norm.
A = magic(5);
vecnorm(A, 2, 1) % default 2-norm in dimension 1
ans = 1×5
32.4808 33.2415 34.7131 33.2415 32.4808
vecnorm(A, 1, 2) % 1-norm in dimension 2
ans = 5×1
65 65 65 65 65

댓글을 달려면 로그인하십시오.

카테고리

Help CenterFile Exchange에서 Linear Algebra에 대해 자세히 알아보기

태그

Community Treasure Hunt

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

Start Hunting!

Translated by