1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
|
// Scilab ( http://www.scilab.org/ ) - This file is part of Scilab
// Copyright (C) 2013 - Samuel GOUGEON: http://bugzilla.scilab.org/10243 fixed
// Copyright (C) 1999-2010 INRIA - Serge STEER <serge.steer@inria.fr>
//
// This file must be used under the terms of the CeCILL.
// This source file is licensed as described in the file COPYING, which
// you should have received as part of this distribution. The terms
// are also available at
// http://www.cecill.info/licences/Licence_CeCILL_V2.1-en.txt
function txt = fun2string(fun,nam)
// form syntax to scilab of a compiled function
//%Parameters
// lst : list, represents the interpreted code of the Scilab function given by macr2lst
// nam : nam of the scilab function to generate
// txt : character string column vector: the text of resulting scilab function
//!
if argn(2) < 1 then
error(sprintf(_("%s: Wrong number of input argument(s): %d to %d expected.\n"), "fun2string", 1, 2));
elseif argn(2)<2 then nam="ans",end
if type(fun)==11 then comp(fun),end
if type(fun)<>15 then
lst=macr2lst(fun);
else
lst=fun
end
lst=mmodlst(lst)
lcount=1;level=[0,0];
quote="''"
dquote=""""
CR="\"+ascii(10)
opstable()
// add input variable in the defined variables
inputs=lst(3);outputs=lst(2)
sciexp=0
// cmt=lst(4)(1)=='31'
crp=ins2sci(lst,4)
//add the function header
select size(outputs,"*")
case 0 then outputs="[]"
case 1 then outputs=outputs
else outputs=lhsargs(outputs)
end
select size(inputs,"*")
case 0 then inputs="()"
else inputs=rhsargs(inputs)
end
txt=crp(1:$-2);
hdr="function "+outputs+"="+nam+inputs;
if stripblanks(txt(1))<>""|txt=="" then hdr=hdr+",",end
txt(1)=hdr+txt(1);
txt(2:$-1)=" "+txt(2:$-1);
if stripblanks(txt($))=="" then
txt($)="endfunction";
else
txt($)=txt($)+"endfunction";
end
endfunction
function txt=ins2sci(lst,ilst)
// traduit un ensemble d'instructions debutant a l'adresse ilst de la
// liste courante lst
//!
// Author Serge Steer
nlst=size(lst)
level;level(2)=0;
txt=""
while ilst<=nlst then
if type(lst(ilst))==15 then
t1=cla2sci(lst(ilst))
ilst=ilst+1
else
if lst(ilst)(1)=="15" then ilst=ilst+1;txt($+1)="";end
[t1,ilst]=cod2sci(lst,ilst)
end
txt=catcode(txt,t1)
end
endfunction
function txt=cla2sci(clause)
// traduit une clause (if while for select)
//!
// Author Serge Steer
typ=clause(1)
txt=""
//write(6,'cla2sci '+typ(1))
level;level(1)=level(1)+1
select typ(1)
case "if" then
ncl=size(clause)
ncas=(ncl-2)/2
tg=""
level(2)=1
[t1,t2,ilst]=exp2sci(clause(2),1)
t1=t1(1);
tg=catcode(tg,t2)
txt=catcode("if ",catcode(splitexp(t1(1))," then "))
t1=ins2sci(clause(3),1)
txt=catcode(txt,indentsci(t1));
// elseif parts
for ic=2:ncas
level(2)=ic
[t1,t2,ilst]=exp2sci(clause(2*ic),1)
if type(t1(1))==15 then t1=t1(1),end
tg=catcode(tg,t2)
txt=catcode(txt,catcode("elseif ",catcode(splitexp(t1(1))," then ")));
t1=ins2sci(clause(1+2*ic),1)
txt=catcode(txt,indentsci(t1));
end;
// else part
t1=ins2sci(clause(ncl),1)
if or(t1<>"") then txt=catcode(txt,catcode("else ",indentsci(t1)));end
txt=catcode(tg,catcode(txt,"end,"))
case "while" then
level(2)=1
[t1,t2,ilst]=exp2sci(clause(2),1)
t1=t1(1);
txt=catcode("while ",catcode(splitexp(t1(1))," then"))
t1=ins2sci(clause(3),1)
txt=catcode(txt,catcode(indentsci(t1),"end,"))
case "for" then
name=typ(2)
sciexp=1
level(2)=1
[t1,t2,ilst]=exp2sci(clause(2),1)
t1=t1(1)
txt=catcode("for "+name+" = ",splitexp(t1(1)+","));
sciexp=0;
t1=ins2sci(clause(3),1)
txt=catcode(txt,catcode(indentsci(t1),"end,"))
case "select" then
ncas=(size(clause)-3)/2
tg=""
level(2)=1
[exp1,t1,ilst]=exp2sci(clause(2),1)
exp1=exp1(1)
le1=length(exp1(1))
if le1<=1|part(exp1(1),le1-1:le1)<>CR then
txt=catcode(catcode("select ",splitexp(exp1(1))),"; ")
else
txt=catcode("select ",splitexp(exp1(1)))
txt($)=""
end
//txt=catcode('select ',splitexp(exp1(1)))
for ic=2:2:2*ncas
level(2)=ic/2
[exp2,t2,ilst]=exp2sci(clause(1+ic),1)
tg=catcode(tg,t2)
exp2=exp2(1)
txt=catcode(txt,catcode("case ",catcode(splitexp(exp2(1))," then")))
t1=ins2sci(clause(2+ic),1)
txt=catcode(txt,indentsci(t1));
end;
t1=ins2sci(clause(3+2*ncas),1)
if or(t1<>"") then
txt=catcode(txt,catcode("else",indentsci(t1)));
end
txt=catcode(tg,catcode(txt,"end,"))
case "try" then
if size(clause(2))==0 then
t1=catcode("try",";")
else
t1=catcode("try",indentsci(ins2sci(clause(2),1)))
end
if size(clause(3))==0 then
t2="end,"
else
t2=catcode(catcode("catch",indentsci(ins2sci(clause(3),1))),"end,")
end
txt=catcode(txt,catcode(t1,t2))
end
endfunction
function [txt,ilst]=cod2sci(lst,ilst)
//
//!
// Author Serge Steer
nlst=size(lst)
txt=""
ilst=ilst-1
while ilst<nlst then
ilst=ilst+1
op=lst(ilst)
if type(op)==15 then return,end
select op(1)
case "1" then //stackp (retained for compatibility with 2.7 and earlier version)
prev=lst(ilst-1)
if size(prev,"*")==1 then prev=[prev " "],end
if and(prev(1:2)==["5","25"])|prev(1)=="20" then
lhs=evstr(prev(4))
else
lhs=1;rhs=1
end
if lhs==1 then
expk=stk(1);
opk=lst(ilst);ilst=ilst+1
opk2=opk(2)
if expk(2)<>"-1"& expk(2)<>"-2" then
if opk(2)=="ans" then
expk(1)($)= expk(1)($)+";"
txt=catcode(txt,splitexp(expk(1)(1)))
else
w=expk(1)(1)
w=opk2+" = "+w(1)+";"
w=splitexp(w)
txt=catcode(txt,w)
end
end
else //
LHS=[]
for k=1:lhs
opk=lst(ilst);ilst=ilst+1;
opk2=opk(2);
LHS=[opk2,LHS];
end
if stk(1)(2)=="-1" then // variable has not been previously stored
txt=catcode(txt,lhsargs(LHS)+" = "+stk(1)(1)+";")
else
RHS=[]
for k=1:min(lhs,size(stk))
expk=stk(k);
RHS=[RHS,expk(1)];
end
txt=catcode(txt,lhsargs(LHS)+" = "+rhsargs(RHS)+";")
end
end
if ilst<=nlst then
if lst(ilst)(1)<>"15" then
ilst=ilst-1,
else
txt($+1)=""
lcount=lcount+1
end
end
case "12" then //pause
txt=catcode(txt,"pause,")
case "13" then //break
txt=catcode(txt,"break,")
case "14" then //abort
txt=catcode(txt,"abort,")
case "15" then ,//eol
txt($+1)=""
case "17" then //quit
txt=catcode(txt,"quit,")
case "18" then
case "25" then
case "28" then //continue
txt=catcode(txt,"continue,")
case "29" then //affectation
ip=evstr(op(2))
if ip==99|ip==2 then
ip=""
else
ip=_code2str(ip)
end
op=matrix(op(3:$),2,-1)
lhs=size(op,2)
LHS=[]
iind=0
for k=1:lhs
name=op(1,k)
rhs=evstr(op(2,k))
if rhs==0 then
LHS=[name,LHS]
else
if rhs==1 then //x(i)=... or x.y.z(i,j..)=..
iind=iind+1,
p=""
P=stk(iind) //Path
if type(P(1))==1 then //x.y.z(i,j..)=..
for ii=2:size(P)
Pi=P(ii)
if type(Pi(1))==1 then // ...(i,j,..)
Ii=[];for ind=2:size(Pi),Ii=[Ii,Pi(ind)(1)],end
p=p+"("+strcat(Ii ,", ")+")"
else
if and(strindex(Pi(1),"''")==[1 length(Pi(1))]) then
p=p+"."+evstr(Pi(1))
else
p=p+"("+Pi(1)+")"
end
end
end
elseif type(P(1))==10 then
testOK = execstr("tmp = evstr(P(1))","errcatch")==0
if testOK
testOK = type(tmp)==10
clear tmp
if testOK
testOK = (execstr(P(1), "errcatch")==0)
end
end
if testOK then
p = "."+evstr(P(1))
else
if P(1)=="eye()" then P(1)=":",end
p="("+P(1)+")"
end
else // /x(i)=...
p="("+P(1)+")"
end
LHS=[name+p,LHS]
else //rhs>1 x(i,j,..)=...
I=[];
for i=1:rhs,
iind=iind+1,
if stk(iind)(1)=="eye()" then
I=[I,":"];
else
I=[I,string(stk(iind)(1))];
end
end
LHS=[name+"("+strcat(I,", ")+")",LHS]
end
end
end
if lhs>1 then LHS="["+strcat(LHS,",")+"]",end
RHS=[]
for k=iind+1:size(stk), RHS=[RHS stk(k)(1)],end
if size(RHS,"*")<>1, RHS="("+strcat(RHS,",")+")",end
if LHS=="ans" then
txt=catcode(txt,RHS+ip)
else
if size(LHS,"*")==1&and(LHS==RHS) then
txt=catcode(txt,RHS+ip)
else
txt=catcode(txt,LHS+" = "+RHS+ip)
end
end
txt=splitexp(txt)
case "31" then //comment
txt=catcode(txt,"//"+op(2))
case "99" then //return
txt=catcode(txt,"return,")
else
if op(1)=="20"&size(op,"*")==1 then //exit
txt=catcode(txt,"exit,")
else
[stk,t1,ilst]=exp2sci(lst,ilst);
if size(t1,1)==1 then t1=splitexp(t1),end
txt=catcode(txt,t1);t1=""
ilst=ilst-1
end
end
end
ilst=ilst+1
endfunction
function [stk,txt,ilst]=exp2sci(lst,ilst)
// Author Serge Steer
nlst=size(lst)
top=0
stk=list()
txt=""
ilst=ilst-1
cmod=0;
//
ok=%t
while ilst<nlst&ok then
lhs=1
ilst=ilst+1
op=lst(ilst)
if type(op)==10 then
if prod(size(op))==1 then op=[op " "],end
select op(1)
case "0" then
case "2" then //stackg
if (op(3)=="-3"&op(4)<>"0") then
[stk,top]=get2sci(op(2),stk,top)
elseif (op(3)=="-2"&op(4)<>"0") then
m=%t
if top>0 then
if type(stk(top)(1))==1 then //previous argument is a recursive index
top=top+1
stk(top)=list(op(2),"0")
m=%f
elseif type(stk(top)(1))==10 then
testOK = (op(4)=="1" & ~funptr(op(2)) & ~exists(op(2)))
if ~testOK then
testOK = execstr("tmp = evstr(op(2))", "errcatch")==0
if testOK
testOK = and(type(tmp)<>[11 13 130])
clear tmp
if testOK
testOK = (execstr(op(2),"errcatch")==0)
end
end
end
if testOK then
top=top+1
stk(top)=list(op(2),"0")
m=%f
// stk(top)(1)=op(2)+'.'+stk(top)(1)
// pause
// m = %f
end
end
end
if m then
//appel des macros
op(3)=op(4)
op1=lst(ilst+1)
if op1(1)=="5"&op1(2)=="25" then
ilst=ilst+1
op(4)=op1(4)
else
op(4)="1"
end
[stk,top]=func2sci(op,stk)
end
elseif op(3)=="-2"&op(4)=="0" then //instruction reduced to a name
[stk,top]=get2sci(op(2),stk,top)
ilst=ilst+1
lst;lst(ilst+1)(3)=op(2)
elseif op(4)=="0" then
[stk,top]=get2sci(op(2),stk,top)
else
if top>0 then
if type(stk(top)(1))==1 then
top=top+1
stk(top)=list(op(2),"0")
end
end
end
t1=[]
case "3" then //string
quote="''"
dqote=""""
top=top+1
st=strsubst(strsubst(op(2),quote,quote+quote),dquote,dquote+dquote)
stk(top)=list(quote+st+quote,"0")
case "4" then //matrice vide
top=top+1
stk(top)=list("[]","0")
case "5" then //allops
t1=[]
iop=evstr(op(2))
top1=top
execstr("[stkr,t1,top]=_"+ops(iop,2)+"2sci()")
stk(top)=stkr
txt=catcode(txt,t1)
t1=""
case "6" then //num
[stk,top]=num2sci(op(2),stk)
case "20" then //functions
[stk,top]=func2sci(op,stk)
case "15" then
if top>0 then
stk(top)(1)=stk(top)(1)+CR
if size(txt,"*")==1 then stk(top)(1)=stk(top)(1)+txt;txt="";end
else
txt($+1)=""
end
case "18" then //named variable
stk(top)(1)=op(2)+"="+ stk(top)(1)
case "19" then // mkindx
// replace all variables describing path by a single list
n=evstr(op(2))
m=evstr(op(3));
if m>1&n>0 then
l=list(m),pos=top-m
for k=1:m,l($+1)=stk(pos+k),end
top=pos+1
stk(top)=l
//for k=2:m,stk(top+1)=null(),end
end
nn=n;if n==0 then nn=m,end
l=list(nn),pos=top-nn
for k=1:nn,l($+1)=stk(pos+k),end
top=pos+1
stk(top)=l
//for k=size(stk):-1:top+1,stk(k)=null(),end
case "23" then
top=top+1
stk(top)=list(quote+op(2)+quote,"0")
case "24" then
top=top+1
stk(top)=list("","0") //list('null()','0')
case "25" then
case "26" then
// vector of string
quote="''"
dqote=""""
if size(lst)>ilst+2&lst(ilst+1)(1)=="6"&lst(ilst+2)(1)=="20"&lst(ilst+2)(2)=="deff" then
st=op(4:$)
fn="function "+strsubst(strsubst(stk(top)(1),quote,""),dquote,"")
if st(1)=="" then
st(1)=fn
else
st(1)=fn+","+st(1)
end
fn=st(:),
//remove last line trailing blanks
ln=fn($),nl=length(ln)
while nl>0&part(ln,nl)==" " do nl=-1,end
//add endfunction at the end of the last line
fn($)=part(ln,1:nl)+"endfunction"
txt=catcode(txt,fn)
lst(ilst+1)(1)="0"; ilst=ilst+1;// ignore getnum (6)
lst(ilst+1)(1)="0"; ilst=ilst+1;// ignore deff (20)
stk(top)=list("","-2"),
else
m=evstr(op(2))
n=evstr(op(3))
top=top+1
st=strsubst(strsubst(op(4:$),quote,quote+quote),dquote,dquote+dquote)
st=quote+st+quote;
if m*n>1 then
st(1)="["+st(1); st($)=st($)+"]"
if m>1 then
tt=[];
for l=1:m
tt=[tt;strcat(st(l:m:$),",")]
end
st=strcat(tt,";");
end
end
stk(top)=list(st,"0")
end
case "27" then
// funptr variable
top=top+1
stk(top)=list(op(4),"0")
case "31" then //comment into multi line matrix definition a=[...
if top==0 then
txt=[txt;"//"+op(2)]
else
stk(top)(1)=stk(top)(1)+"; //"+op(2)
end
else
ok=%f
end
else
ok=%f
end
end
stk=list(stk(1:top))
lst=resume(lst)
endfunction
function [stk,top]=func2sci(op,stk)
// translate all functions calls
// Author Serge Steer
lhs=evstr(op(4))
rhs=max(evstr(op(3)) ,0)
[stkr,top1]=sci_gener(op(2))
// add lhs expression to the stack
top=top-rhs
// for k=size(stk):-1:(top-rhs+1), stk(top)=null(),end
// if lhs>1 then
// for k=1:lhs
// top=top+1
// stk(top)=stkr(k)
// end
// else
top=top+1
stk(top)=stkr
// end
endfunction
function [stk,txt,top]=_m2sci()
txt=[]
s1=stk(top-1)
s2=stk(top)
[e1,te1]=s1(1:2);
[e2,te2]=s2(1:2);
//
if te2=="1"|te2=="2"|te2=="3" then e2="("+e2+")",end
if te1=="2"|te1=="3" then e1="("+e1+")",end
stk=list(e1+" * "+e2,"1")
top=top-1
endfunction
function [stk,txt,top]=_a2sci()
// Author Serge Steer
txt=[]
s2=stk(top);s1=stk(top-1);
if s2(2)=="3" then s2(1)="("+s2(1)+")",end
if s1(2)=="3" then s1(1)="("+s1(1)+")",end
stk=list(s1(1)+" + "+s2(1),"2")
top=top-1
endfunction
function [stk,top,txt]=get2sci(nam,stk,top)
// Translate the named variable acquisition
// Author Serge Steer
txt=[]
top=top+1
stk(top)=list(nam,"0")
endfunction
function [stk,top]=sci_gener(nam)
// Author Serge Steer
RHS=[]
for k=1:rhs
arg=stk(top)(1);
if arg=="eye()" then arg=":",end
RHS=[arg,RHS]
top=top-1
end
if RHS==[] then RHS="",end
top=top+1
// if lhs==1 then
stk=list(nam+rhsargs(RHS),"0")
// else
// stk=list()
// for k=1:lhs
// stk(k)=list(nam+rhsargs(RHS),'-1')
// end
// end
endfunction
function [stk,txt,top]=_c2sci()
// Author Serge Steer
txt=[]
m=evstr(op(3));n=evstr(op(4))
top1=top-m*n
if op(2)=="23" then // row
nrc=m
row=[]
for k=1:nrc
row=[row,stk(top1+k)(1)]
end
t="["+strcat(row,",")+"]"
stk=list("["+strcat(row,",")+"]","0")
elseif op(2)=="27" then // column
ncc=m
col=[]
for l=1:ncc
col=[col,stk(top1+l)(1)]
end
multi=%f
//!multi-lines expressions not handed by other functions than stackp
//if sum(length(col))>70 then
// ii=ilst+1
// while lst(ii)(1)=='15' then ii=ii+1,end
// if lst(ii)(1)=='1' then multi=%t,end
//end
if multi then
col(1)="["+col(1)
col($)=col($)+"]"
stk=list(col,"0")
else
stk=list("["+strcat(col,";")+"]","0")
end
else
nrc=m;ncc=n
col=[]
for l=1:nrc
row=[]
for k=1:ncc
row=[row,stk(top1+(l-1)*ncc+k)(1)];
end
col=[col,strcat(row,",")]
end
multi=%f
//!multi-lines expressions not handed by other functions than stackp
if sum(length(col))>70 then
ii=ilst+1
while lst(ii)(1)=="15" then ii=ii+1,end
if lst(ii)(1)=="1" then multi=%t,end
end
if multi then
col(1)="["+col(1)
col($)=col($)+"]"
stk=list(col,"0")
else
stk=list("["+strcat(col,";")+"]","0")
end
end
top=top1+1
endfunction
function opstable()
// Author Serge Steer
quote="''"
logics=["==","<",">","<=",">=","<>"]
ops =["+", "a";
"-", "s";
"*", "m";
".*", "x";
".*.", "k";
"*.", "u";
"/", "r";
"./", "d";
"./.", "y";
"/.", "v";
"\", "l";
".\", "q";
".\.", "z";
"\.", "w";
"^", "p";
"==", "log";
"<", "log";
">", "log";
"<=", "log";
">=", "log";
"~=", "log";
":", "imp";
"[]", "c";
"ins", "i";
"ext", "e";
quote, "t";
"[]", "c";
"|", "g";
"&", "h";
"~", "5";
".^", "j";
"."+quote "0";
"[]", "c"]
[logics,ops]=resume(logics,ops)
endfunction
function [stk,top]=num2sci(val,stk)
// traduit la definition d'un nombre
// Author Serge Steer
top=top+1
stk(top)=list(val,"0")
endfunction
function [stk,txt,top]=_log2sci()
txt=[]
iop=evstr(op(2))
s2=stk(top);s1=stk(top-1);top=top-1
if s2(2)=="2"|s2(2)=="3" then s2(1)="("+s2(1)+")",end
if s1(2)=="2"|s1(2)=="3" then s1(1)="("+s1(1)+")",end
stk=list(s1(1)+" "+ops(iop,1)+" "+s2(1),"3")
endfunction
function txt=rhsargs(args)
// Author Serge Steer
txt="("+strcat(args,", ")+")"
endfunction
function txt=lhsargs(args)
// Author Serge Steer
txt="["+strcat(args,", ")+"]"
endfunction
function [stk,txt,top]=_p2sci()
// ^
// Author Serge Steer
txt=[]
s2=stk(top);s1=stk(top-1);
[s1,te1]=s1(1:2);
[s2,te2]=s2(1:2);
//
if te2=="1"|te2=="2"|te2=="3" then s2="("+s2+")",end
if te1=="1"|te1=="2"|te1=="3" then s1="("+s1+")",end
if part(s2,1)=="-" then s2="("+s2+")",end
stk=list(s1+"^"+s2,"2")
top=top-1
endfunction
function [txt]=indentsci(txt)
// Author Serge Steer
k=find(txt<>"")
if k<>[] then
bl=" "
txt(k)=bl(ones(prod(size(k)),1))+txt(k)
end
endfunction
function lst=mmodlst(lst)
// mmodlst is used to reduce mutiple concatenations, obtained by the
// interpretor, such as
// [[a,b],c]
// [[a;b];c]
// to a single one whenever possible
// Author Serge Steer
void=["0","0","0","0"]
nlst=size(lst);top=0
ilst=0
pos=[]
to_kill=[]
while ilst<nlst
ilst=ilst+1
if type(lst(ilst))==15 then
lst(ilst)=mmodlst(lst(ilst))
else
op=lst(ilst)
if type(op)<>10 then op="????",end //bug dans macr2lst
opn=op(1)
if opn=="5" then
if op(2)=="23" then // row concatenation
i2=pos(top);i1=pos(top-1)
a1=lst(i1)
a2=lst(i2);
// [a1 a2] contenation
if a1(1:2)==["5","23"] then
// [a1,a2] is [[a,b,...],a2] replaced by [a,b,...,a2 ]
lst(i1)=void;to_kill=[to_kill,i1] //ignore concat which forms a1
lst(ilst)(3)=addf(a1(3),"1"); //change rhs of current concat
top=top-1
pos(top)=ilst
else // catenate
top=top-1
pos(top)=ilst
end
elseif op(2)=="27" then // column concatenation
i2=pos(top);i1=pos(top-1)
a1=lst(i1)
if size(a1,2)<4 then a1(4)=" ",end
a2=lst(i2)
if size(a2,2)<4 then a2(4)=" ",end
// [a1;a2] contenation
if a1(1:2)==["5","27"] then
// [a1;a2] is [[a;b;...];a2] replaced by [a;b;...;a2 ]
lst(i1)=void;to_kill=[to_kill,i1]//ignore concat which forms a1
lst(ilst)(3)=addf(a1(3),"1");//change rhs of current concat
top=top-1
pos(top)=ilst
elseif and(a1(1:2)==["5","23"]&a2(1:2)==["5","23"])&a1(3)==a2(3) then
// [a1;a2] is [[a,b,...];[x,y,..] replaced by [a,b,...;x,y,..]
lst(i1)=void;to_kill=[to_kill,i1]//ignore concat which forms a1
lst(i2)=void;to_kill=[to_kill,i2]//ignore concat which forms a2
lst(ilst)=["5","33","2",a1(3)];// change op
top=top-1
pos(top)=ilst
elseif and(a1(1:2)==["5","33"]&a2(1:2)==["5","23"])&a1(4)==a2(3) then
// [a1;a2] is [[[a,b,...;x,y,..];a2] replaced by [a,b,...;x,y,..;a2]
w=lst(i1)
lst(i1)=void;to_kill=[to_kill,i1]//ignore concat which forms a1
lst(i2)=void;to_kill=[to_kill,i2]//ignore concat which forms a2
lst(ilst)=w
lst(ilst)(3)=addf(a1(3),"1");//change rhs of current concat
top=top-1
pos(top)=ilst
else // catenate
top=top-1
pos(top)=ilst
end
else
rhs=abs(evstr(op(3)));lhs=evstr(op(4))
pos((top-rhs+1):(top-rhs+lhs))=ones(lhs,1)*ilst
top=top-rhs+lhs
pos(top+1:$)=[]
end
elseif opn=="20" then
if size(op,"*")<4 then//exit
rhs=0;lhs=1
else
rhs=max(evstr(op(3)),0);lhs=evstr(op(4))
end
pos((top-rhs+1):(top-rhs+lhs))=ones(lhs,1)*ilst
top=top-rhs+lhs
pos(top+1:$)=[]
elseif opn=="2"|opn=="3"|opn=="4"|opn=="6"|opn=="23"|opn=="24"|opn=="26"|opn=="27"|opn=="29" then
top=top+1
pos(top)=ilst
// else
end
end
end
// purge list of suppressed concatenations
to_kill=gsort(to_kill)
for k=1:prod(size(to_kill))
lst(to_kill(k))=null();
end
endfunction
function [stk,txt,top]=_02sci()
// translate .'
// Author Serge Steer
txt=[]
s2=stk(top)
if s2(2)=="2"|s2(2)=="3" then s2(1)="("+s2(1)+")",end
stk=list(s2(1)+"."+quote,"3")
endfunction
function [stk,txt,top]=_52sci()
// generate code for ~
// Author Serge Steer
txt=[]
s2=stk(top)
if s2(2)=="2"|s2(2)=="3" then s2(1)="("+s2(1)+")",end
stk=list("~"+s2(1),"3")
endfunction
function [stk,txt,top]=_d2sci()
// ./
// Author Serge Steer
txt=[]
s2=stk(top);s1=stk(top-1);top=top-1;
if s2(2)=="3"|s2(2)=="2"|s2(2)=="1" then s2(1)="("+s2(1)+")",end
if s1(2)=="3"|s1(2)=="2" then s1(1)="("+s1(1)+")",end
stk=list(s1(1)+" ./ "+s2(1),"1")
endfunction
function [stk,txt,top]=_e2sci()
// generate code for extraction
// Author Serge Steer
txt=[]
rhs=max(0,abs(evstr(op(3)))-1)
sn=stk(top);top=top-1
s2=stk(top)
if rhs==1 then
if type(s2(1))==1 then // recursive extraction
n=s2(1)
ex=sn(1)
for k=1:n
ik=s2(k+1)
if type(ik(1))==1 then
ex1=[]
for k1=1:ik(1),ex1=[ex1,ik(1+k1)(1)],end
ex=ex+rhsargs(ex1)
else
if ik(2)=="0"&part(ik(1),1)=="''" then
ex=ex+"."+part(ik(1),2:length(ik(1))-1)
else
if ik(1)=="eye()" then ik(1)=":",end
ex=ex+"("+ik(1)+")"
end
end
end
stk=list(ex,"0")
else
testOK = type(s2(1))==10 & (execstr("tmp = evstr(s2(1))", "errcatch")==0)
if testOK
testOK = type(tmp)==10
clear tmp
if testOK
testOK = (execstr(s2(1),"errcatch")==0)
end
end
if testOK then // recursive extraction
stk=list(sn(1)+"."+evstr(s2(1)),"0")
else
if s2(1)=="eye()" then s2(1)=":",end
stk=list(sn(1)+"("+s2(1)+")","0")
end
end
elseif rhs==0 then
sn(1)=sn(1)+"()";
stk=sn;
top=top+1
else
s1=stk(top-1);top=top-1
if s2(1)=="eye()" then s2(1)=":",end
if s1(1)=="eye()" then s1(1)=":",end
stk=list(sn(1)+rhsargs([s1(1),s2(1)]),"0")
end
endfunction
function [stk,txt,top]=_g2sci()
// Generate code for |
// Author Serge Steer
txt=[]
s2=stk(top);s1=stk(top-1);
[e1,te1]=s1(1:2);
[e2,te2]=s2(1:2);
stk=list(e1+" | "+e2,"2")
top=top-1
endfunction
function [stk,txt,top]=_h2sci()
// Generate code for &
// Author Serge Steer
s2=stk(top);s1=stk(top-1);
txt=[]
[e1,te1]=s1(1:2);
[e2,te2]=s2(1:2);
//
if te2=="2"|te2=="3" then e2="("+e2+")",end
if te1=="2"|te1=="3" then e1="("+e1+")",end
stk=list(e1+" & "+e2,"2")
top=top-1
endfunction
function [stk,txt,top]=_i2sci()
// Generate code for insertion
// Author Serge Steer
txt=[]
rhs=abs(evstr(op(3)))-2
sto=stk(top);top=top-1
sfrom=stk(top);top=top-1
top=top-rhs+1
s2=stk(top)
if s2(1)=="eye()" then s2(1)=":",end
if rhs==1 then
if type(s2(1))==1 then // recursive extraction
n=s2(1)
ex=sto(1)
for k=1:n
ik=s2(k+1)
if type(ik(1))==1 then
ex1=[]
for k1=1:ik(1),ex1=[ex1,ik(1+k1)(1)],end
ex=ex+rhsargs(ex1)
else
if ik(2)=="0"&part(ik(1),1)=="''" then
ex=ex+"."+part(ik(1),2:length(ik(1))-1)
else
if ik(1)=="eye()" then ik(1)=":",end
ex=ex+"("+ik(1)+")"
end
end
end
txt=ex+"="+sfrom(1)+";"
stk=list(" ","-1")
else
if s2(1)=="eye()" then s2(1)=":",end
txt=sto(1)+"("+s2(1)+")="+sfrom(1)+";"
stk=list(op(2),"-1")
end
else // x(i,j)=y
s1=stk(top+1)
if s1(1)=="eye()" then s1(1)=":",end
if s2(1)=="eye()" then s2(1)=":",end
txt=sto(1)+"("+s2(1)+","+s1(1)+") = "+sfrom(1)+";"
stk=list(op(2),"-1")
end
endfunction
function [stk,txt,top]=_imp2sci()
//code for 1:n
// Author Serge Steer
txt=[]
if op(3)=="2" then
stk=list(stk(top-1)(1)+":"+stk(top)(1),"3")
top=top-1
else
stk=list(stk(top-2)(1)+":"+stk(top-1)(1)+":"+stk(top)(1),"3")
top=top-2
end
endfunction
function [stk,txt,top]=_j2sci()
// Generates code for .^
// Author Serge Steer
s2=stk(top);s1=stk(top-1);
txt=[]
[ss1,te1]=s1(1:2);
[ss2,te2]=s2(1:2);
//
if te2=="1"|te2=="2"|te2=="3" then ss2="("+ss2+")",end
if te1=="1"|te1=="2"|te1=="3" then ss1="("+ss1+")",end
if part(ss2,1)=="-" then ss2="("+ss2+")",end
stk=list(ss1+".^"+ss2,"1")
top=top-1
endfunction
function [stk,txt,top]=_l2sci()
// \
// Author Serge Steer
txt=[]
s2=stk(top);s1=stk(top-1);top=top-1;
if s2(2)=="3"|s2(2)=="2"|s2(2)=="1" then s2(1)="("+s2(1)+")",end
if s1(2)=="3"|s1(2)=="2" then s1(1)="("+s1(1)+")",end
if part(s1(1),1)=="-" then s1(1)="("+s1(1)+")",end
stk=list(s1(1)+"\"+s2(1),"1")
endfunction
function [stk,txt,top]=_q2sci()
// .\
// Author Serge Steer
txt=[]
s2=stk(top);s1=stk(top-1);top=top-1;
if s2(2)=="3"|s2(2)=="2"|s2(2)=="1" then s2(1)="("+s2(1)+")",end
if s1(2)=="3"|s1(2)=="2" then s1(1)="("+s1(1)+")",end
stk=list(s1(1)+" .\ "+s2(1),"1")
endfunction
function [stk,txt,top]=_r2sci()
// /
// Author Serge Steer
txt=[]
s2=stk(top);s1=stk(top-1);top=top-1;
if s2(2)=="3"|s2(2)=="2"|s2(2)=="1" then s2(1)="("+s2(1)+")",end
if s1(2)=="3"|s1(2)=="2" then s1(1)="("+s1(1)+")",end
if part(s2(1),1)=="-" then s2(1)="("+s2(1)+")",end
stk=list(s1(1)+"/"+s2(1),"1")
endfunction
function [stk,txt,top]=_s2sci()
// Generates code for subtraction and sign change -
// Author Serge Steer
txt=[]
s2=stk(top)
if s2(2)=="2"|s2(2)=="3" then s2(1)="("+s2(1)+")",end
if op(3)=="2" then
s1=stk(top-1)
if s1(2)=="3" then s1(1)="("+s1(1)+")",end
stk=list(s1(1)+" - "+s2(1),"2")
top=top-1
else
stk=list("-"+s2(1),"2")
end
endfunction
function [stk,txt,top]=_t2sci()
// Generates code for transposition
// Author Serge Steer
txt=[]
s2=stk(top)
if s2(2)=="1"|s2(2)=="2"|s2(2)=="3" then s2(1)="("+s2(1)+")",end
stk=list(s2(1)+quote,s2(2))
endfunction
function [stk,txt,top]=_x2sci()
// Generates code for .*
// Author Serge Steer
txt=[]
s1=stk(top-1)
s2=stk(top)
[e1,te1]=s1(1:2);
[e2,te2]=s2(1:2);
//
if te2=="1"|te2=="2"|te2=="3" then e2="("+e2+")",end
if te1=="2"|te1=="3" then e1="("+e1+")",end
stk=list(e1+" .* "+e2,"1")
top=top-1
endfunction
function t=catcode(a,b)
// Author Serge Steer
if a==[] then
t=b
elseif b==[]
t=a
else
t=[a(1:$-1);a($)+b(1);b(2:$)]
end
endfunction
function T=splitexp(t)
// Author Serge Steer
T=[]
for i=1:size(t,"*")
ti=t(i)
ti=strsubst(ti,CR+";",";"+CR)
ti=strsubst(ti,CR+", [",", ["+CR)
ks=strindex(ti,CR)
kd=1
ind=""
for kf=ks
T=[T;ind+part(ti,kd:kf-1)];
kd=kf+length(CR);
ind=" ";
end
T=[T;ind+part(ti,kd:length(ti))]
end
endfunction
function [stk,txt,top]=_u2sci()
// Author Serge Steer
txt=[]
s1=stk(top-1)
s2=stk(top)
[e1,te1]=s1(1:2);
[e2,te2]=s2(1:2);
//
if te2=="1"|te2=="2"|te2=="3" then e2="("+e2+")",end
if te1=="2"|te1=="3" then e1="("+e1+")",end
stk=list(e1+" *. "+e2,"1")
top=top-1
endfunction
function [stk,txt,top]=_k2sci()
//generates code for .*.
// Author Serge Steer
txt=[]
s1=stk(top-1)
s2=stk(top)
[e1,te1]=s1(1:2);
[e2,te2]=s2(1:2);
//
if te2=="1"|te2=="2"|te2=="3" then e2="("+e2+")",end
if te1=="2"|te1=="3" then e1="("+e1+")",end
stk=list(e1+" .*. "+e2,"1")
top=top-1
endfunction
function [stk,txt,top]=_v2sci()
//generates code for /.
// Author Serge Steer
txt=[]
s1=stk(top-1)
s2=stk(top)
[e1,te1]=s1(1:2);
[e2,te2]=s2(1:2);
//
if te2=="1"|te2=="2"|te2=="3" then e2="("+e2+")",end
if te1=="2"|te1=="3" then e1="("+e1+")",end
stk=list(e1+" /. "+e2,"1")
top=top-1
endfunction
function [stk,txt,top]=_y2sci()
//generates code for ./.
// Author Serge Steer
txt=[]
s1=stk(top-1)
s2=stk(top)
[e1,te1]=s1(1:2);
[e2,te2]=s2(1:2);
//
if te2=="1"|te2=="2"|te2=="3" then e2="("+e2+")",end
if te1=="2"|te1=="3" then e1="("+e1+")",end
stk=list(e1+" ./. "+e2,"1")
top=top-1
endfunction
function [stk,txt,top]=_z2sci()
//generates code for .\.
// Author Serge Steer
txt=[]
s1=stk(top-1)
s2=stk(top)
[e1,te1]=s1(1:2);
[e2,te2]=s2(1:2);
//
if te2=="1"|te2=="2"|te2=="3" then e2="("+e2+")",end
if te1=="2"|te1=="3" then e1="("+e1+")",end
stk=list(e1+" .\. "+e2,"1")
top=top-1
endfunction
function [stk,txt,top]=_w2sci()
//generates code for .\
// Author Serge Steer
txt=[]
s1=stk(top-1)
s2=stk(top)
[e1,te1]=s1(1:2);
[e2,te2]=s2(1:2);
//
if te2=="1"|te2=="2"|te2=="3" then e2="("+e2+")",end
if te1=="2"|te1=="3" then e1="("+e1+")",end
stk=list(e1+" \. "+e2,"1")
top=top-1
endfunction
|