Newbie: ploting Rectangular Signals and apply Grahm-Schmidt procedure??

3 ビュー (過去 30 日間)
Usman  Ali
Usman Ali 2014 年 2 月 3 日
編集済み: Usman Ali 2014 年 2 月 6 日
Dear Experts, I would like to work on Gram-Schmidt Orthognolization Procedure for given signals in matlab
. 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

採用された回答

Wayne King
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 件のコメント
Usman  Ali
Usman Ali 2014 年 2 月 4 日
編集済み: Usman Ali 2014 年 2 月 6 日
what confuses me is that from analytic solution I find 3 basis that are scalar values. in this case Q is a 3x3 matrix. I am confused which values to consider for basis function.
Matt J
Matt J 2014 年 2 月 4 日
編集済み: Matt J 2014 年 2 月 4 日
They constitute the Gram-Schmidt procedure applied to the columns of A.
Or rather, a numerically stable alternative to Gram-Schmidt.

サインインしてコメントする。

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeSignal Processing Toolbox についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by