Newbie: ploting Rectangular Signals and apply Grahm-Schmidt procedure??
2 次查看(过去 30 天)
显示 更早的评论
Dear Experts, I would like to work on Gram-Schmidt Orthognolization Procedure for given signals in matlab
![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/155991/image.jpeg)
. steps are 1. define and plot the above signals. 2. Obtain Signal Energies 3. find set of orthonormal functions 4. vector representation of the signals
I have obtained the analytical solution for it but would any one be kind enough to help me write the code for it in matlab??
I shall be very much thankful
0 个评论
采纳的回答
Wayne King
2014-2-3
编辑:Wayne King
2014-2-3
Presumably you have these as N-dimensional vectors in the MATLAB workspace. Place those vectors as columns of a matrix and us qr().
A = [1 1 0; 1 0 1; 0 1 1];
% columns of A are your signals
[Q,R] = qr(A);
Look at the matrix, Q.
norm(Q(:,1),2) % for example
dot(Q(:,1),Q(:,2)) % for example
4 个评论
更多回答(0 个)
另请参阅
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!