How to get norm (magnitude) of a vector the simple way?

6 ビュー (過去 30 日間)
Niklas Kurz
Niklas Kurz 2021 年 5 月 4 日
編集済み: Niklas Kurz 2021 年 5 月 8 日
I just want to get the norm of
syms phi the;
c = [-cos(phi)*sin(the)^2;-sin(phi)*sin(the)^2; - cos(the)*sin(the)*cos(phi)^2 - cos(the)*sin(the)*sin(phi)^2]
norm(c,2)
isn't really simplifying anything
If I type it manually:
simplify(sqrt(cos(phi)^2*sin(the)^4+sin(phi)^2*sin(the)^4+sin(the)^2*cos(the)^2))
I get a simple answere:
(sin(the)^2)^(1/2)
  5 件のコメント
David Goodmanson
David Goodmanson 2021 年 5 月 6 日
Hi Niklas,
If your last two vector elements were
- cos(the)*sin(the)*cos(phi) - cos(the)*sin(the)*sin(phi)
i.e. cos(phi) and sin(phi) not squared, then you would get what you say. But since cos(phi) and sin(phi) are squared, you don't.
Niklas Kurz
Niklas Kurz 2021 年 5 月 8 日
I'm sorry for forgetting the simicolons in c. It might have been hard for you to reproduce what I was trying to create.

サインインしてコメントする。

採用された回答

Nagasai Bharat
Nagasai Bharat 2021 年 5 月 7 日
Hi,
From the documentation of norm and simplify you could find the usage of both these functions. norm would be used to calculate the norm of a vector/matrix but not for an expression. simpify would be used in the simplification of an algebric expression.
  1 件のコメント
Niklas Kurz
Niklas Kurz 2021 年 5 月 8 日
編集済み: Niklas Kurz 2021 年 5 月 8 日
well, it actually works if u were to incorporate some assumptions:
assume(phi>0);assume(the>0); assume(phi,'real'); assume(the,'real')
then, under these conditions
simplify(norm(c))
will simplify a lot (actually >0 not necessary)

サインインしてコメントする。

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeCreating and Concatenating Matrices についてさらに検索

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by