diff options
author | siddhu8990 | 2017-06-21 15:46:02 +0530 |
---|---|---|
committer | siddhu8990 | 2017-06-21 15:46:02 +0530 |
commit | 7dd99346700740df9480b1f47221e24afc32371d (patch) | |
tree | 41b5094514f9a62d40483a1b6c0481c115220c04 /macros/FunctionAnnotation/FA_TP_ASCII.sci | |
parent | adbc46709966e50b3fed6ff061afff9e59d4b79c (diff) | |
parent | 061f07929cc984788154bc296c6cc440ef72a3c6 (diff) | |
download | scilab2c-7dd99346700740df9480b1f47221e24afc32371d.tar.gz scilab2c-7dd99346700740df9480b1f47221e24afc32371d.tar.bz2 scilab2c-7dd99346700740df9480b1f47221e24afc32371d.zip |
Merged Ankit's work, signal processing and string functions
Diffstat (limited to 'macros/FunctionAnnotation/FA_TP_ASCII.sci')
-rw-r--r-- | macros/FunctionAnnotation/FA_TP_ASCII.sci | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/macros/FunctionAnnotation/FA_TP_ASCII.sci b/macros/FunctionAnnotation/FA_TP_ASCII.sci new file mode 100644 index 00000000..e05dd7ae --- /dev/null +++ b/macros/FunctionAnnotation/FA_TP_ASCII.sci @@ -0,0 +1,10 @@ +function outtp=FA_TP_ASCII(in1tp) + +in1tp=string(in1tp); +if(in1tp=='g') then + outtp='u8'; +else + outtp='g'; +end + +endfunction |