필터 지우기
필터 지우기

fundamental principle of multiplication

조회 수: 2 (최근 30일)
a
a 2013년 10월 11일
댓글: a 2013년 10월 14일
i have 4 numbers as a row vector, p=[ 1 -1 j -j ];
Now, total number of different 4 digit numbers formed using elements of "p" is 4^4=256
Thus i need a 256*4 matrix.
How to create such a 256*4 matrix ?
  댓글 수: 2
Image Analyst
Image Analyst 2013년 10월 12일
What is a 4 digit number? Can you give an example of the first 6 rows of what you want at the result?
a
a 2013년 10월 12일
편집: a 2013년 10월 12일
@Image Analyst:
Here a 4 digit number is like,
1 1 1 1 ; 1 1 1 -1 ; 1 1 1 i ; 1 1 1 -i ; 1 1 -1 1; ... and so on(till 256 row vectors hence a 256x4 matrix).
first 6 rows of required data matrix are in text file attached.Please find the attached. (and the data need not be in that order).
But required matrix should be a "256x4 Complex double" having all rows unique.Any help ?

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

채택된 답변

Jos (10584)
Jos (10584) 2013년 10월 12일
p = [ 1 -1 j -j ] ;
[a,b,c,d] = ndgrid(p) ;
M = [a(:) b(:) c(:) d(:)]

추가 답변 (2개)

Sean de Wolski
Sean de Wolski 2013년 10월 11일
[xx,yy,zz,qq] = ndgrid('1234');
V = [xx(:) yy(:) xx(:) qq(:)]
  댓글 수: 3
Cedric
Cedric 2013년 10월 12일
편집: Cedric 2013년 10월 12일
@Sean: I don't think that it works as expected..
>> size(unique(V, 'rows'))
ans =
64 4
a
a 2013년 10월 12일
편집: a 2013년 10월 12일
@cedric
yeah.
All rows are not unique.
In my case it should be all unique rows and matrix size should be 256x4 complex double.

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


Cedric
Cedric 2013년 10월 12일
편집: Cedric 2013년 10월 12일
I guess that the following would work. I didn't think too much about it though and there must be a simpler or even trivial solution..
>> ID = mod(floor((0:255).' * 2.^[0:-2:-6]), 4) + 1 ;
>> p(ID)
Check
>> size(unique(ID, 'rows'))
ans =
256 4
  댓글 수: 2
a
a 2013년 10월 12일
@cedric:
thank you for your answer but yeah you are right that there must be a simpler or even trivial solution.
Cedric
Cedric 2013년 10월 12일
편집: Cedric 2013년 10월 12일
Just in case nobody proposes a better solution, the way this one works is comparable to the way you build tables of binary codes.. you build the first column as 01010101.., the second as 0011001100.., the third as 000011110000.., and so on. My solution does the same in base 4.

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

카테고리

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

Community Treasure Hunt

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

Start Hunting!

Translated by