How do you get 3D gradient direction and magnitude ?

3 views (last 30 days)
Hi all,
I know that we can get the magnitude and direction from 2D gradient ?
1) mag(Gx,Gy) = sqrt ( Gx^2 + Gy^2 )
2) angle(Gx, Gy) = tan^-1 (Gy/Gx)
What about in 3D?
1) mag(Gx,Gy,Gz) = sqrt ( Gx^2 + Gy^2 + Gz^2 )
2) angle(Gx,Gy,Gz) = ???
I seriously need your help. Many, many thanks, Gary

Answers (1)

Matt J
Matt J on 16 Nov 2013
I'd probably define direction this way
angle(Gx,Gy,Gz) = [Gx,Gy,Gz]/mag(Gx,Gy,Gz)
  2 Comments
Gary Tsui
Gary Tsui on 16 Nov 2013
Hi Matt, thanks, would you please further elaborate on the definition of [Gx,Gy,Gz]?

Sign in to comment.

Categories

Find more on MATLAB in Help Center and File Exchange

Tags

Products

Community Treasure Hunt

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

Start Hunting!