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

조회 수: 3 (최근 30일)
%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

채택된 답변

Matt J
Matt J 2024년 6월 2일
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
Matt J
Matt J 2024년 6월 2일
편집: Matt J 2024년 6월 2일
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 2024년 6월 2일
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!!

댓글을 달려면 로그인하십시오.

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Symbolic Math Toolbox에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by