How do you drop the 'abs' that's sometimes attached to an output when we use the 'norm' function?

4 vues (au cours des 30 derniers jours)
Here is some sample code:
%
syms a theta
param = [a*cos(theta), a*sin(theta), 0]
norm(param)
%
The output is:
(abs(a*sin(theta))^2 + abs(a*cos(theta))^2)^(1/2).
What I want to see is:
(a^2*sin(theta)^2 + a^2*cos(theta)^2)^(1/2)
or the even more simplified version:
a
Any ideas?

Réponses (1)

Walter Roberson
Walter Roberson le 15 Nov 2015
syms a theta real
and you might want to simplify() the result of the norm()
The abs() is there because complex values are assumed.

Catégories

En savoir plus sur Mathematics dans Help Center et File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by