summaryrefslogtreecommitdiff
path: root/tests/unit_tests/power.sce
diff options
context:
space:
mode:
authorAbhinav Dronamraju2017-08-01 20:25:57 +0530
committerAbhinav Dronamraju2017-08-01 20:25:57 +0530
commitc73be8f2ad1c7c11f67ba31817f9d051bfa29fa1 (patch)
treea246d645f117df7d6abc9166023c7e114d4a3c46 /tests/unit_tests/power.sce
parentac4326bd2f66e0978e200e4685f14669b8feda82 (diff)
parente47a705e2a330fc6745ad406d04d63075df65492 (diff)
downloadScilab2C_fossee_old-c73be8f2ad1c7c11f67ba31817f9d051bfa29fa1.tar.gz
Scilab2C_fossee_old-c73be8f2ad1c7c11f67ba31817f9d051bfa29fa1.tar.bz2
Scilab2C_fossee_old-c73be8f2ad1c7c11f67ba31817f9d051bfa29fa1.zip
Merged
Diffstat (limited to 'tests/unit_tests/power.sce')
-rw-r--r--tests/unit_tests/power.sce5
1 files changed, 5 insertions, 0 deletions
diff --git a/tests/unit_tests/power.sce b/tests/unit_tests/power.sce
new file mode 100644
index 0000000..b83b2c9
--- /dev/null
+++ b/tests/unit_tests/power.sce
@@ -0,0 +1,5 @@
+//test for scilab function nextpow2
+function power()
+ x = nextpow2([127 5]) //calling nextpow2
+ disp(x)
+endfunction