summaryrefslogtreecommitdiff
path: root/2.3-1/tests/unit_tests/inter.sce
diff options
context:
space:
mode:
Diffstat (limited to '2.3-1/tests/unit_tests/inter.sce')
-rw-r--r--2.3-1/tests/unit_tests/inter.sce11
1 files changed, 11 insertions, 0 deletions
diff --git a/2.3-1/tests/unit_tests/inter.sce b/2.3-1/tests/unit_tests/inter.sce
new file mode 100644
index 00000000..b5a797d9
--- /dev/null
+++ b/2.3-1/tests/unit_tests/inter.sce
@@ -0,0 +1,11 @@
+//test for interp1
+function inter()
+ x=linspace(1,3,3) //declaring a 1-D array
+ disp(x)
+ y=x.^2 //values for y at equivalent value for x
+ disp(y)
+ xx=linspace(1,2,4) // new points for that we have too find values using interpolation
+ disp(xx)
+ yy1=interp1(x,y,xx) //calling interp1
+ disp(yy1)
+endfunction