Clear Filters
Clear Filters

solving an equation using linsolve...............

1 view (last 30 days)
Tankeswar Kumar
Tankeswar Kumar on 22 Feb 2013
In the following:
s =
2 3
3 4
t =
1
2
[p q]=linsolve(s,t)
p =
2.0000
-1.0000
q =
0.0204
How to find out q manually........

Answers (1)

Azzi Abdelmalek
Azzi Abdelmalek on 22 Feb 2013
Edited: Azzi Abdelmalek on 22 Feb 2013
I am not sure what you mean by manually:
q=rcond(s)
  3 Comments
Azzi Abdelmalek
Azzi Abdelmalek on 22 Feb 2013
In your case
norm(s,1)=max(2+3,3+4)=7
inv(s)=
-4 3
3 -2
norm(inv(s),1)=max(abs(-4)+3,3+abs(-2))=7
Then
rcond(s)=1/(7*7)=0.204

Sign in to comment.

Categories

Find more on Linear Algebra in Help Center and File Exchange

Tags

Community Treasure Hunt

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

Start Hunting!