The Origin Forum
File Exchange
Try Origin for Free
The Origin Forum
Home | Profile | Register | Active Topics | Members | Search | FAQ | Send File to Tech support
 All Forums
 Origin Forum
 Origin Forum
 matching worksheets

Note: You must be registered in order to post a reply.
To register, click here. Registration is FREE!

Screensize:
UserName:
Password:
Anti-Spam Code:
Format Mode:
Format: BoldItalicizedUnderlineStrikethrough Align LeftCenteredAlign Right Horizontal Rule Insert HyperlinkUpload FileInsert Image Insert CodeInsert QuoteInsert List
   
Message:

* HTML is OFF
* Forum Code is ON
Smilies
Smile [:)] Big Smile [:D] Cool [8D] Blush [:I]
Tongue [:P] Evil [):] Wink [;)] Clown [:o)]
Black Eye [B)] Eight Ball [8] Frown [:(] Shy [8)]
Shocked [:0] Angry [:(!] Dead [xx(] Sleepy [|)]
Kisses [:X] Approve [^] Disapprove [V] Question [?]

 
Check here to subscribe to this topic.
   

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

The Origin Forum © 2020 Originlab Corporation Go To Top Of Page
Snitz Forums 2000