summaryrefslogtreecommitdiff
path: root/texmf-dist/scripts/ketpic/ketlib/ketpic2escifiles6/Mixop.sci
diff options
context:
space:
mode:
Diffstat (limited to 'texmf-dist/scripts/ketpic/ketlib/ketpic2escifiles6/Mixop.sci')
-rwxr-xr-xtexmf-dist/scripts/ketpic/ketlib/ketpic2escifiles6/Mixop.sci22
1 files changed, 22 insertions, 0 deletions
diff --git a/texmf-dist/scripts/ketpic/ketlib/ketpic2escifiles6/Mixop.sci b/texmf-dist/scripts/ketpic/ketlib/ketpic2escifiles6/Mixop.sci
new file mode 100755
index 00000000..10c846dc
--- /dev/null
+++ b/texmf-dist/scripts/ketpic/ketlib/ketpic2escifiles6/Mixop.sci
@@ -0,0 +1,22 @@
+// 08.05.14 Data Structure
+// 08.04.15 List ex N=1:3
+// 08.05.16 List of MixL
+// 08.05.18 Debugged
+// 08.05.19 Changed
+// 08.08.17
+
+// Structure changed
+// 09.10.11
+
+function D=Mixop(N,PL)
+ D=[];
+ if Mixtype(PL)==1
+ D=PL;
+ return;
+ end;
+ if type(N)~=1 | length(N)>1 | N>Mixlength(PL)
+ return
+ end;
+ D=PL(N);
+endfunction
+