vector multiplication with its transpose
이전 댓글 표시
Hi experts,
I have question about an inequality how to implement in matlab??

the simple is that (y(t+1)-y(t))'W(y(t+1)-y(t))>y(t)'Wy(t)? Can I use a norm function for this?
답변 (1개)
James Tursa
2020년 4월 14일
편집: James Tursa
2020년 4월 14일
Variables and expressions in MATLAB need an operator between them ... there is no implied multiply. So this
(y(t+1)-y(t))'W(y(t+1)-y(t))>y(t)'Wy(t)
should be this instead
(y(t+1)-y(t)).' * W * (y(t+1)-y(t)) > y(t).' * W * y(t)
댓글 수: 4
Muhammad Atif
2020년 4월 14일
Muhammad Atif
2020년 4월 14일
James Tursa
2020년 4월 14일
편집: James Tursa
2020년 4월 14일
For a numeric column vector, norm(y(t)) would give the same result as sqrt(y(t)' * y(t)) if that is what you are asking.
How is this being used? Are these numeric or symbolic?
Muhammad Atif
2020년 4월 15일
카테고리
도움말 센터 및 File Exchange에서 Loops and Conditional Statements에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!