Clear Filters
Clear Filters

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

2 views (last 30 days)
%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

Accepted Answer

Matt J
Matt J on 2 Jun 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 Comments
Matt J
Matt J on 2 Jun 2024
Edited: Matt J on 2 Jun 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 on 2 Jun 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!!

Sign in to comment.

More Answers (0)

Community Treasure Hunt

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

Start Hunting!