summaryrefslogtreecommitdiff
path: root/Introduction_To_Linear_Algebra_by_Gilbert_Strang/CH2/EX2.4.c
diff options
context:
space:
mode:
Diffstat (limited to 'Introduction_To_Linear_Algebra_by_Gilbert_Strang/CH2/EX2.4.c')
-rw-r--r--Introduction_To_Linear_Algebra_by_Gilbert_Strang/CH2/EX2.4.c/Ex2_2.4C.R6
1 files changed, 6 insertions, 0 deletions
diff --git a/Introduction_To_Linear_Algebra_by_Gilbert_Strang/CH2/EX2.4.c/Ex2_2.4C.R b/Introduction_To_Linear_Algebra_by_Gilbert_Strang/CH2/EX2.4.c/Ex2_2.4C.R
new file mode 100644
index 00000000..1e656640
--- /dev/null
+++ b/Introduction_To_Linear_Algebra_by_Gilbert_Strang/CH2/EX2.4.c/Ex2_2.4C.R
@@ -0,0 +1,6 @@
+#Example : 2.4C Chapter : 2.4 Pageno : 74
+#3-step paths for the given directed graph
+A<-matrix(c(1,1,1,0),ncol=2)
+A3<-A%*%A%*%A
+print("3 step paths between each pair of nodes in the given directed graph is :")
+print(A3) \ No newline at end of file