[Index for tmp_for_tar/mcompat]
[Return to Master Index]
intersect
(tmp_for_tar/mcompat/intersect.m)
Function Synopsis
c = intersect(a,b)
Help text
c = intersect(a,b) == intersection(a,b)
c is the sorted list of elements common to a and b
For m****b compat
Last modified: January 2000
Listing of function file tmp_for_tar/mcompat/intersect.m
## c = intersect(a,b) == intersection(a,b)
##
## c is the sorted list of elements common to a and b
##
## For m****b compat
## Author: Etienne Grossmann <etienne@isr.ist.utl.pt>
## Last modified: January 2000
function c = intersect(a,b)
c = intersection(a,b);
Produced by oct2html on Tue Apr 4 20:42:02 2000
Cross-Directory links are: ON