hello all...
now i build an intranet application in a company that have electrical engineering background. in some application i have to generate matrix that call Hadamard Matrix, note: digital case. The algoritm is preaty easy, but i never use multi dimentional matrix. the matrix is like this:
Hn/2 Hn/2
Hn=
Hn/2 -Hn/2
example
1 1
H[2]=
1 -1
1 1 1 1
H[4]= 1 -1 1 -1
1 1 -1 -1
1 -1 -1 1
H[8] is H[4] H[4]
H[4] -H[4]
according to formula above..
i think this use 2 dimension array
anybody solve this problem, urgent please.......