Info

이 질문은 마감되었습니다. 편집하거나 답변을 올리려면 질문을 다시 여십시오.

A strange result with vectors

조회 수: 1 (최근 30일)
metin yilmaz
metin yilmaz 2020년 11월 5일
마감: MATLAB Answer Bot 2021년 8월 20일
When I create 1:3:5 matlab turns 1 4, a row matrix.
why does matlab ignores .* between two vectors?
1:3:5 .* 1:3:5 turns out that 1 4.
But when I write 1:3:5 1:3:5 matlab turns "unexpected matlab expression".
Thank you.

답변 (1개)

Rishik Ramena
Rishik Ramena 2020년 11월 5일
The precedence of .* operator is higher than : operator. You can find more about operator precedence in MATLAB here. So you can get the desired output by using parentheses as shown (1:3:5).*(1:3:5).
1:3:5.*1:3:5 is interpreted as:
1:(3:(5.*1):3):5 -> 1:(3:5:3):5 -> 1:3:5 -> [1,4]
Also note that the .* operator is not being ignored.

Community Treasure Hunt

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

Start Hunting!

Translated by