How to decompose and expand a vector into ones

조회 수: 2 (최근 30일)
Blue
Blue 2019년 8월 8일
댓글: Adam Danz 2019년 8월 9일
Hi,
How would you decompose and expand a vector in Matlab ?
I might not be using the right terminology but let's I = [2, 2]'
How can I multiply that by 12 and get a 1x48 vector filled by ones ?

채택된 답변

Adam Danz
Adam Danz 2019년 8월 8일
편집: Adam Danz 2019년 8월 8일
" I = [2, 2]' How can I multiply that by 12 and get a 1x48 vector filled by ones ?"
My interpretation: you want to multiply (or add?) the elements in I and then you want to multiply that result by 12 to get 48. Then create a row vector of 1s with length 48. Is that right?
I = [2, 2]';
x = ones(1,prod(I)*12); % prod() or sum() as in madhan's ans
the key is to use ones().
  댓글 수: 2
Blue
Blue 2019년 8월 9일
You know you are indispensable, right ? Thanks.
Adam Danz
Adam Danz 2019년 8월 9일
Ha! Glad I could help.

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

추가 답변 (1개)

madhan ravi
madhan ravi 2019년 8월 8일
ones(sum(I)*12,1)
  댓글 수: 2
Adam Danz
Adam Danz 2019년 8월 8일
"and get a 1x48 vector filled by ones"
You'd need to switch around those terms.
madhan ravi
madhan ravi 2019년 8월 8일
Yup it was intentional.

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

카테고리

Help CenterFile Exchange에서 Matrix Indexing에 대해 자세히 알아보기

태그

Community Treasure Hunt

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

Start Hunting!

Translated by