summaryrefslogtreecommitdiff
path: root/texmf-dist/scripts/ketcindy/ketlib/ketpic2escifiles6/Mixlength.sci
diff options
context:
space:
mode:
Diffstat (limited to 'texmf-dist/scripts/ketcindy/ketlib/ketpic2escifiles6/Mixlength.sci')
-rw-r--r--texmf-dist/scripts/ketcindy/ketlib/ketpic2escifiles6/Mixlength.sci18
1 files changed, 18 insertions, 0 deletions
diff --git a/texmf-dist/scripts/ketcindy/ketlib/ketpic2escifiles6/Mixlength.sci b/texmf-dist/scripts/ketcindy/ketlib/ketpic2escifiles6/Mixlength.sci
new file mode 100644
index 00000000..6fd31749
--- /dev/null
+++ b/texmf-dist/scripts/ketcindy/ketlib/ketpic2escifiles6/Mixlength.sci
@@ -0,0 +1,18 @@
+// 08.05.14 Data Structure
+// 08.05.23 Debugged
+
+// Structure changed
+// 09.10.11
+
+function Out=Mixlength(PL)
+ if PL==[]
+ Out=0;
+ return
+ end
+ if Mixtype(PL)==1
+ Out=size(PL,1);
+ else
+ Out=length(PL);
+ end;
+endfunction
+