Is there a MATLAB function that calculates the magnitude of a velocity vector?

14 views (last 30 days)
v(t) = sqrt( x(t)^2 + y(t)^2 + z(t)^2 )

Accepted Answer

Walter Roberson
Walter Roberson on 6 Mar 2022
if x y z are scalar then
norm([x, y, z])
  3 Comments
Steven Lord
Steven Lord on 6 Mar 2022
If you have multiple vectors whose norm you want to calculate stored in a matrix and you're using release R2017b or later, use the vecnorm function.

Sign in to comment.

More Answers (0)

Categories

Find more on Simulink in Help Center and File Exchange

Products


Release

R2012b

Community Treasure Hunt

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

Start Hunting!