Home Online Manual
Top
Back: sumlist
Forward: multiplylist
FastBack:
FastForward:
Up: resbinomial_lib
Top: Singular Manual
Contents: Table of Contents
Index: Index
About: About this document

D.5.12.28 reslist

Procedure from library resbinomial.lib (see resbinomial_lib).

Usage:
reslist(L1,L2); L1,L2 lists, (size(L1)==size(L2))

Return:
a list, subtraction of L1 and L2

Example:
 
LIB "resbinomial.lib";
list L1=1,2,3;
list L2=5,9,7;
reslist(L1,L2);
==> [1]:
==>    -4
==> [2]:
==>    -7
==> [3]:
==>    -4