felix
Posts:
7
Registered:
11/19/12
|
|
Re: function of common values to two tabes?
Posted:
Nov 19, 2012 6:35 AM
|
|
"Nasser M. Abbasi" <nma@12000.org> wrote in message <k8d49h$991$1@speranza.aioe.org>... > On 11/19/2012 5:08 AM, felix wrote: > > funct which accepts as input two actual tables A and B, which after making > >appropriate comparisons will return the output vector out2 that contains > >values ??that are common to both tables. > > > > what is a 'table' ?? is this matlab thing? > > But if you mean a matrix, then you can use (from help): > > --------------------------------------- > C = intersect(A,B) for vectors A and B, returns the values common to > the two vectors with no repetitions. > ----------------------------------------- > > --Nasser > > sorry about my wrong expression, when i say table i mean matrix. i have two matricies A and B and i need to find and output a vector with numbers that are the same at both matricies. > > >
|
|