Sign in

username:

password:



Not a member?

Search matlab



Search tips

Subscribe to matlab



matlab by Keywords

Atanh | Autocorrelation | Bandpass Filter | C++ | Conv | Database | Deconv | Excel | FFT | Filter | Filtering | FIR | Fourier Transfrom | FSK | Gaussian Noise | Haykin | IFFT | Image | Java | LFSR | LMS | LPC | MEX | OFDM | QPSK | Radix | Random | Sampling | Segmentation | Simulink | Visual Basic | Waveform | Wavelet


Discussion Groups

Discussion Groups | Matlab DSP | Orthogonal random matrix

Technical discussion about Matlab and issues related to Digital Signal Processing.

  

Post a new Thread

Orthogonal random matrix - zulfiquar zab - May 29 20:41:12 2008



Hi,
 
  I want to generate orthogonal random matrix in matlab. 
How can I do it?
 
Cheers
ZAB
      


(You need to be a member of matlab -- send a blank email to matlab-subscribe@yahoogroups.com )

Re: Orthogonal random matrix - Mercedes Puzio - May 30 7:17:28 2008

Hello Zab,

You can try with "gallery" function to build test matrices. Check the full 
function reference at:

http://www.mathworks.com/access/helpdesk/help/techdoc/index.html?/access/helpdesk/help/techdoc/
ref/gallery.html

Regards,
Mercedes.

----- Original Message ----- 
From: "zulfiquar zab" <z...@yahoo.com>
To: <m...@yahoogroups.com>
Sent: Thursday, May 29, 2008 6:43 PM
Subject: [matlab] Orthogonal random matrix
> Hi,
> &nbsp;
> &nbsp; I want to generate orthogonal random matrix in matlab.
> How can I do it?
> &nbsp;
> Cheers
> ZAB
> 


(You need to be a member of matlab -- send a blank email to matlab-subscribe@yahoogroups.com )

Re: Orthogonal random matrix - Kimbol Zhang - May 30 7:17:32 2008

hi zab.
do u mean uncorrelated matrix?
if so. yo u can try

a = randn(n,1);
b = randn(n,1);
x = cov(a,b);
cov = x(1,2);
c = (a - mean(a)) / std(a);
e  = b - cov * c;
f = (b - cov*a) / std(e);

good luck

kimbol
----- Original Message ----- 
  From: zulfiquar zab 
  To: m...@yahoogroups.com 
  Sent: Thursday, May 29, 2008 4:43 PM
  Subject: [matlab] Orthogonal random matrix
        Hi,

          I want to generate orthogonal random matrix in matlab. 

        How can I do it?

        Cheers

        ZAB



(You need to be a member of matlab -- send a blank email to matlab-subscribe@yahoogroups.com )