summaryrefslogtreecommitdiff
path: root/Numerical_Methods_by_E_Balaguruswamy/CH14/EX14.6
diff options
context:
space:
mode:
Diffstat (limited to 'Numerical_Methods_by_E_Balaguruswamy/CH14/EX14.6')
-rw-r--r--Numerical_Methods_by_E_Balaguruswamy/CH14/EX14.6/Ex14_6.R25
1 files changed, 25 insertions, 0 deletions
diff --git a/Numerical_Methods_by_E_Balaguruswamy/CH14/EX14.6/Ex14_6.R b/Numerical_Methods_by_E_Balaguruswamy/CH14/EX14.6/Ex14_6.R
new file mode 100644
index 00000000..a8f0c2ac
--- /dev/null
+++ b/Numerical_Methods_by_E_Balaguruswamy/CH14/EX14.6/Ex14_6.R
@@ -0,0 +1,25 @@
+# Example 6 Chapter 14 Page no.: 478
+# Power method
+
+# Include "matlib" library
+install.packages("matlib")
+library(matlib)
+
+#Given Matrix
+A<-matrix(c(1,2,0,2,1,0,0,0,-1),nrow = 3,ncol = 3,byrow = TRUE)
+A
+eigen<-powerMethod(A)
+
+EigenVector<-(eigen$vector[,1]-eigen$vector[3,1])
+
+EigenVector<-matrix(EigenVector,nrow = 3,ncol = 1,byrow = TRUE)
+
+EigenVector<-(EigenVector/EigenVector[1]) #This is Eigen vector Corresponding to largest Eigen Value.
+
+EigenValue<-eigen$value #This is Largest Eigen Value.
+
+sprintf("The largest eigen value Lampda1=%g",EigenValue)
+
+print("The Eigen Vector corresponding to eigen value")
+
+print(EigenVector)