Skip to content
Snippets Groups Projects
Commit 7d153fb5 authored by Sebastian Schwarz's avatar Sebastian Schwarz
Browse files

add V06.2.ipynb

parent 7c3d7eeb
No related branches found
No related tags found
No related merge requests found
%% Cell type:markdown id:1f0f7673-ab1a-413f-b73c-0a248ba39ed9 tags:
# <span style='color:OrangeRed'>V6 NORMALFORMEN IN ZUSTANDRAUMDARSTELLUNG TEIL 2</span>
%% Cell type:markdown id:9653081e-df65-4ccd-9204-e11c542a469f tags:
<div style="font-family: 'times'; font-size: 13pt; text-align: justify">
Es ist ein lineares System gegeben, das im Zustandsraum folgende Beschreibung hat:
%% Cell type:code id:825956d9-8873-4d83-bf39-7c8d40da2aff tags:
``` octave
clear all
pkg load symbolic
a = 5
b = 1
c = 2
A = [c 0;1 b]
B = [b; a]
C = [0 1]
D = 0
```
%% Output
a = 5
b = 1
c = 2
A =
2 0
1 1
B =
1
5
C =
0 1
D = 0
%% Cell type:markdown id:a27e62db-897e-41e8-9b56-fd8c6b48f3bf tags:
<div style="font-family: 'times'; font-size: 13pt; text-align: justify">
Finden Sie eine Transformation, die eine diagonale Form ergibt.
%% Cell type:markdown id:1943a7dc-b837-4623-8792-a1775026155d tags:
<div style="font-family: 'times'; font-size: 13pt; text-align: justify">
Zunächst müssen wir die Eigenwerte des Systems finden:
%% Cell type:code id:ef3d3be5-73cd-48d2-a773-d177b638230a tags:
``` octave
p = eigs(A)
```
%% Output
p =
2
1
%% Cell type:markdown id:a160dc2c-e6be-4329-9a7a-69f7689a7354 tags:
Wir müssen nun die beiden Eigenvektoren berechnen, die den beiden Eigenwerten zugeordnet sind:
%% Cell type:code id:1ed03ed5-3913-4107-95c9-f48e52bb50ee tags:
``` octave
[V D]=eig(A)
```
%% Output
V =
0.00000 0.70711
1.00000 0.70711
D =
Diagonal Matrix
1 0
0 2
%% Cell type:markdown id:5cea5a50-7f13-4d9e-b343-de64bacb84f7 tags:
Wir können das Ergebnis auch überprufen:
%% Cell type:code id:5ef87d39-8ab8-4ce0-adc2-d392311d8a9c tags:
``` octave
At = inv(V)*A*V
```
%% Output
At =
1 0
0 2
%% Cell type:code id:e81354c4-0adf-4909-a490-32f2ee713788 tags:
``` octave
```
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment