summaryrefslogtreecommitdiff
path: root/1332/CH9/EX9.1
diff options
context:
space:
mode:
Diffstat (limited to '1332/CH9/EX9.1')
-rwxr-xr-x1332/CH9/EX9.1/9_1.pdfbin0 -> 6351 bytes
-rwxr-xr-x1332/CH9/EX9.1/9_1.sce11
2 files changed, 11 insertions, 0 deletions
diff --git a/1332/CH9/EX9.1/9_1.pdf b/1332/CH9/EX9.1/9_1.pdf
new file mode 100755
index 000000000..460aca796
--- /dev/null
+++ b/1332/CH9/EX9.1/9_1.pdf
Binary files differ
diff --git a/1332/CH9/EX9.1/9_1.sce b/1332/CH9/EX9.1/9_1.sce
new file mode 100755
index 000000000..06416f8c5
--- /dev/null
+++ b/1332/CH9/EX9.1/9_1.sce
@@ -0,0 +1,11 @@
+//Example 9.1
+//Moore-Penrose Generalized Inverse
+//Page no. 292
+clc;clear;close;
+
+AT=[3,0,3;0,3,3];
+A=AT'; //transpose
+I=inv(AT*A); //inverse
+disp(I,'Inverse of AT*A=',AT*A,'AT*A=',A,'A=',AT,'AT=');
+A#=I*AT;
+disp(A#,'Moore-Penrose Generalized Inverse of A=') \ No newline at end of file