summaryrefslogtreecommitdiff
path: root/tests/unit_tests/test_string/scilabcode/asciitest.sci
diff options
context:
space:
mode:
authorBrijeshcr2017-07-07 19:57:00 +0530
committerBrijeshcr2017-07-07 19:57:00 +0530
commiteb4fd4f84b56a9b8f1976a67461f2c918edede32 (patch)
treead6032b0992e679f9d69e98074141267888f5c03 /tests/unit_tests/test_string/scilabcode/asciitest.sci
parentaa250753b439916e4df235839e9266f058632f80 (diff)
parent936bd00d2855553f52d682494814804065c7b99e (diff)
downloadscilab2c-eb4fd4f84b56a9b8f1976a67461f2c918edede32.tar.gz
scilab2c-eb4fd4f84b56a9b8f1976a67461f2c918edede32.tar.bz2
scilab2c-eb4fd4f84b56a9b8f1976a67461f2c918edede32.zip
Signal Processing and Demos Updated
Diffstat (limited to 'tests/unit_tests/test_string/scilabcode/asciitest.sci')
-rw-r--r--tests/unit_tests/test_string/scilabcode/asciitest.sci11
1 files changed, 11 insertions, 0 deletions
diff --git a/tests/unit_tests/test_string/scilabcode/asciitest.sci b/tests/unit_tests/test_string/scilabcode/asciitest.sci
new file mode 100644
index 00000000..aa0017d7
--- /dev/null
+++ b/tests/unit_tests/test_string/scilabcode/asciitest.sci
@@ -0,0 +1,11 @@
+//This function test the ascii function in scilab.
+//Ascii function takes the input string and then gives the ascii code of the string.
+// The output for the scilab will be:-
+//[97. 110. 107. 105. 116. 32. 105. 115. 32. 114. 97. 106.]
+
+function asciitest()
+ y="ankit is raj"; //This is the input string for testing the function.
+ x=ascii(y); //calling of the function
+ disp(x);
+endfunction
+