diff options
author | priyanka | 2015-06-24 15:03:17 +0530 |
---|---|---|
committer | priyanka | 2015-06-24 15:03:17 +0530 |
commit | b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch) | |
tree | ab291cffc65280e58ac82470ba63fbcca7805165 /50/CH3/EX3.2/ex_3_2.sce | |
download | Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.gz Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.bz2 Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.zip |
initial commit / add all books
Diffstat (limited to '50/CH3/EX3.2/ex_3_2.sce')
-rwxr-xr-x | 50/CH3/EX3.2/ex_3_2.sce | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/50/CH3/EX3.2/ex_3_2.sce b/50/CH3/EX3.2/ex_3_2.sce new file mode 100755 index 000000000..bc98fc202 --- /dev/null +++ b/50/CH3/EX3.2/ex_3_2.sce @@ -0,0 +1,13 @@ +//example no.3.2 +// show if a given matrix 'A' possesses 'property A' + +A=[2 -1 0 -1;-1 2 -1 0;0 -1 2 0;0 0 -1 2 ] + +P=[0 0 0 1;0 1 0 0;0 0 1 0;1 0 0 0] // let us take the pemutation matrix as P + +// then we find that + +P*A*P' + +// is of the form (3.2) . hence the matrix 'A' has property A + |