Subversion Repositories wimsdev

Rev

Rev 8529 | Rev 10075 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 8529 Rev 10072
Line 36... Line 36...
36
 
36
 
37
char *nameofcmd="octave -Hf --no-line-editing";
37
char *nameofcmd="octave -Hf --no-line-editing";
38
int precision=9;
38
int precision=9;
39
char header[]="split_long_rows(0)\n\
39
char header[]="split_long_rows(0)\n\
40
page_screen_output(0)\n\
40
page_screen_output(0)\n\
41
function y=sh(x) y=sinh(x); endfunction\n\
41
sh=@sinh\n\
42
function y=ch(x) y=cosh(x); endfunction\n\
42
ch=@cosh\n\
43
function y=th(x) y=tanh(x); endfunction\n\
43
th=@tanh\n\
44
function y=ln(x) y=log(x); endfunction\n\
44
ln=@log\n\
45
function y=lg(x) y=log10(x); endfunction\n\
45
lg=@log10\n\
46
function y=sgn(x) y=sign(x); endfunction\n\
46
sgn=@sign\n\
47
function y=tg(x) y=tan(x); endfunction\n\
47
tg=@tan\n\
48
function y=cotan(x) y=cot(x); endfunction\n\
48
cotan=@cot\n\
49
function y=ctg(x) y=cot(x); endfunction\n\
49
ctg=@cot\n\
50
function y=arcsin(x) y=asin(x); endfunction\n\
50
arcsin=@asin\n\
51
function y=arccos(x) y=acos(x); endfunction\n\
51
arccos=@acos\n\
52
function y=arctan(x) y=atan(x); endfunction\n\
52
arctan=@atan\n\
53
function y=arctg(x) y=atan(x); endfunction\n\
53
arctg=@atan\n\
54
function y=argsh(x) y=asinh(x); endfunction\n\
54
argsh=@asinh\n\
55
function y=argch(x) y=acosh(x); endfunction\n\
55
argch=@acosh\n\
56
function y=argth(x) y=atanh(x); endfunction\n\
56
argth=@atanh\n\
57
function y=Argsh(x) y=asinh(x); endfunction\n\
57
Argsh=@asinh\n\
58
function y=Argch(x) y=acosh(x); endfunction\n\
58
Argch=@acosh\n\
59
function y=Argth(x) y=atanh(x); endfunction\n\
59
Argth=@atanh\n\
60
function y=rint(x) y=round(x); endfunction\n\
60
rint=@round\n\
61
PI=pi\n\
61
PI=pi\n\
62
Pi=pi\n\
62
Pi=pi\n\
63
";
63
";
64
 
64
 
65
struct {
65
struct {