フィルターのクリア

using SVD to solve systems of linear equation: have to implement direct parameter calibration method

32 ビュー (過去 30 日間)
can you please tell me how to implement direct parameter calibration method in matlab to show how SVD is used to solve systems of linear equation? i know about SVD but dont know any matlab syntax for direct parameter calibration method.

採用された回答

Matt J
Matt J 2013 年 3 月 10 日
編集済み: Matt J 2013 年 3 月 10 日
Given an n-by-n linear system
A*x=b
and the SVD of A,
[U,S,V]=svd(A,0);
Then one could solve the system as follows
x= V*((U'*b)./diag(S))
However, the easier way would be
x=A\b
so I don't understand why you stipulate that the SVD has to be used. If this isn't what you want, please elaborate and maybe also explain the niche terminology "direct parameter calibration method".
  1 件のコメント
Sat m
Sat m 2013 年 3 月 10 日
thank you. it is working. i used x=A/b before but in my assignment, my instructor specifically mentioned to use SVD and to implement direct parallel calibration method'. i do not know what is this direct parallel calibration method and how does it work? or how to implement it

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

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeLinear Algebra についてさらに検索

製品

Community Treasure Hunt

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

Start Hunting!

Translated by