How to find norm of a 3 X 1 matrix if it contains components in parametric form?

3 vues (au cours des 30 derniers jours)
%i have this coupler matrix in parametric form
syms t
coupler_parametric=[5163136522924301/2251799813685248, 2^(1/2)/2 - (8*t)/(t^2 + 1), - (4*(t^2 - 1))/(t^2 + 1) - 2];
i want to find magnitude of this matrix in terms of t
please someone help

Réponse acceptée

Matt J
Matt J le 2 Juin 2024
syms t
coupler_parametric=[5163136522924301/2251799813685248,...
2^(1/2)/2 - (8*t)/(t^2 + 1), - (4*(t^2 - 1))/(t^2 + 1) - 2];
norm(coupler_parametric)
ans = 
  4 commentaires
Matt J
Matt J le 2 Juin 2024
Modifié(e) : Matt J le 2 Juin 2024
But i think that there is mistake in calculating square of this term and adding 5163136522924301/2251799813685248.
What is your basis for distrusting the calculation?
Aman
Aman le 2 Juin 2024
see 5163136522924301/2251799813685248 this number is greater than 1 ,so its square should be greater than 1 which i thought by seeing the output square which seems less than 1,which i misunderstood.
Thanks for your answer!!

Connectez-vous pour commenter.

Plus de réponses (0)

Catégories

En savoir plus sur Symbolic Math Toolbox 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