필터 지우기
필터 지우기

what does x= [ones(1,2) 2 ones(1,1) 2 ones(1,2) 1] do?

조회 수: 4 (최근 30일)
Prb
Prb 2019년 5월 8일
댓글: Prb 2019년 5월 14일
please explain the X= [ones(1,2) 2 ones(1,1) 2 ones(1,2) 1];
line of code. I understand that it is creating 1 by 2 array of ones. But what is the significance of 2 ones(1,1) and so on.

채택된 답변

KSSV
KSSV 2019년 5월 8일
It depends on the requirement of what array you want. If you see that line generates:
[1 1 2 1 2 1 1 1]
The array has 2 in 3rd, 4th position. So 2 is used. The same can also be generated using:
X = ones(1,8) ;
X([3 5]) = 2

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Matrices and Arrays에 대해 자세히 알아보기

태그

Community Treasure Hunt

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

Start Hunting!

Translated by