From 4bc007e5b44a13b582b0275bf7fc6693942ba2ac Mon Sep 17 00:00:00 2001
From: Brijeshcr
Date: Thu, 10 Aug 2017 19:38:31 +0530
Subject: Added Gamma, gammaln, beta, isinf, ndgrid and range

---
 demos/Brijesh_Demos/test_gamma.sci | 10 ++++++++++
 1 file changed, 10 insertions(+)
 create mode 100644 demos/Brijesh_Demos/test_gamma.sci

(limited to 'demos/Brijesh_Demos/test_gamma.sci')

diff --git a/demos/Brijesh_Demos/test_gamma.sci b/demos/Brijesh_Demos/test_gamma.sci
new file mode 100644
index 00000000..4ca5f021
--- /dev/null
+++ b/demos/Brijesh_Demos/test_gamma.sci
@@ -0,0 +1,10 @@
+function test_gamma
+	disp('Datatype: Double');
+	i1 = [1 2 3; 4 5 6];
+	o1 = gamma(i1);
+	disp(o1);
+	disp('Datatype: float');
+	i2 = float([1 2 3; 4 5 6]);
+	o2 = gamma(i2);
+	disp(o2);
+endfunction
-- 
cgit