T O P I C R E V I E W |
ovince |
Posted - 08/12/2007 : 11:06:59 AM Hi
Recently, I match lots of data-tables so I was wandering, is there a plan to put feature in new version of Origin that would match tables using arbitrary columns (and arbitrary number of columns)?
thanks oliver |
2 L A T E S T R E P L I E S (Newest First) |
ovince |
Posted - 08/13/2007 : 11:52:06 AM I meant cross-matching like
a1 a2 a3 1 23 34 2 34 56 3 43 42
c1 c2 c3 1 23 32 2 34 53 3 42 43
cross-matching 2 tables using col1 and col2 gives
a1 a2 a3 c1 c2 c3 1 23 32 1 23 32 2 34 53 2 34 53
|
Mike Buess |
Posted - 08/13/2007 : 09:39:23 AM > This will list all worksheets with 8 columns...
ncols=8; document -e W { if( wks.ncols==ncols ) type %H; };
> This will list all worksheets in which column 4 is named "Magnitude"...
icol=4; %A=Magnitude; %Z=""; document -e W { if( wks.ncols>=icol && wks.col$(icol).name$==%A ) %Z=%Z %H; }; type %Z;
Mike Buess Origin WebRing Member
Edited by - Mike Buess on 08/13/2007 09:42:36 AM |