MATLAB CONTROL SYSTEM TOOLBOX 9 Podręcznik Użytkownika Strona 376

  • Pobierz
  • Dodaj do moich podręczników
  • Drukuj
  • Strona
    / 649
  • Spis treści
  • BOOKMARKI
  • Oceniono. / 5. Na podstawie oceny klientów
Przeglądanie stron 375
10 Reliable Computations
10-4
Conditioning and Numerical Stability
Two of the key concepts in numerical anal ysis are the conditioning of problems
and the stability of algorithms.
Conditioning
Consider the linear system given by
A =
0.7800 0.5630
0.9130 0.6590
b =
0.2170
0.2540
Thetruesolutionisx = [1, –1]' and youcan calculateitapproximatelyusing
MATLAB.
x = A\b
x =
1.0000
–1.0000
format long, x
x =
0.99999999991008
–0.99999999987542
Of course, in real problems you almost never have the luxury of knowing the
true solution. This problem is very ill-conditioned. To see this, add a small
perturbation to
A
E =
0.0010 0.0010
–0.0020 –0.0010
and solve the perturbed system
xe = (A+E)\b
xe =
–5.0000
7.3085
Ax b
=
AE
+()
xb
=
Przeglądanie stron 375
1 2 ... 371 372 373 374 375 376 377 378 379 380 381 ... 648 649

Komentarze do niniejszej Instrukcji

Brak uwag