diff options
author | Ankit Raj | 2017-06-21 11:00:07 +0530 |
---|---|---|
committer | Ankit Raj | 2017-06-21 11:00:07 +0530 |
commit | efd4b2645e3fd3c3cdd7b65501a0e7ae26d03c59 (patch) | |
tree | 65444449ab64db280008c59b08204ee775db26df /cosine.sci | |
parent | b33afdb2311fbe8aad4c5c614c6098585fe2d279 (diff) | |
download | scilab2c-efd4b2645e3fd3c3cdd7b65501a0e7ae26d03c59.tar.gz scilab2c-efd4b2645e3fd3c3cdd7b65501a0e7ae26d03c59.tar.bz2 scilab2c-efd4b2645e3fd3c3cdd7b65501a0e7ae26d03c59.zip |
Functions added - string related and signal processing
Diffstat (limited to 'cosine.sci')
-rw-r--r-- | cosine.sci | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/cosine.sci b/cosine.sci new file mode 100644 index 00000000..bc74f360 --- /dev/null +++ b/cosine.sci @@ -0,0 +1,5 @@ +function cosine() + x=%pi/3; + y=cos(x); + disp(y) +endfunction |