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

3 visualizaciones (últimos 30 días)
%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

Respuesta aceptada

Matt J
Matt J el 2 de Jun. de 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 comentarios
Matt J
Matt J el 2 de Jun. de 2024
Editada: Matt J el 2 de Jun. de 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 el 2 de Jun. de 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!!

Iniciar sesión para comentar.

Más respuestas (0)

Categorías

Más información sobre Symbolic Math Toolbox en Help Center y File Exchange.

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by