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
Username:
Password:
Save Password
Forgot your Password? | Admin Options

 All Forums
 Origin Forum
 Origin Forum
 matching worksheets
 New Topic  Reply to Topic
 Printer Friendly
Author Previous Topic Topic Next Topic Lock Topic Edit Topic Delete Topic New Topic Reply to Topic

ovince

Yugoslavia
Posts

Posted - 08/12/2007 :  11:06:59 AM  Show Profile  Edit Topic  Reply with Quote  View user's IP address  Delete Topic
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

Mike Buess

USA
3037 Posts

Posted - 08/13/2007 :  09:39:23 AM  Show Profile  Edit Reply  Reply with Quote  View user's IP address  Delete Reply
> 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
Go to Top of Page

ovince

Yugoslavia
Posts

Posted - 08/13/2007 :  11:52:06 AM  Show Profile  Edit Reply  Reply with Quote  View user's IP address  Delete Reply
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




Go to Top of Page
  Previous Topic Topic Next Topic Lock Topic Edit Topic Delete Topic New Topic Reply to Topic
 New Topic  Reply to Topic
 Printer Friendly
Jump To:
The Origin Forum © 2020 Originlab Corporation Go To Top Of Page
Snitz Forums 2000