If the sets contain integers in a reasonable range you could use indexing, like this:
use strict;
use PDL;
my $pdl_a = pdl 10..20;
my $pdl_b = pdl 15..18;
my $mask_a = zeroes 21;
my $mask_b = zeroes 21;
my $set_a = index($mask_a, $pdl_a);
my $set_b = index($mask_b, $pdl_b);
$set_a .= 1;
$set_b .= 1;
my $pdl_c = which($mask_a & $mask_b);
print $pdl_c,"\n";
If the sets are large you could use bit masking, as in this example:
Re^2: Basic Perl trumps DBI? Or my poor DB design?.
Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
Read Where should I post X? if you're not absolutely sure you're posting in the right place.
Please read these before you post! —
Posts may use any of the Perl Monks Approved HTML tags:
- a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
| |
For: |
|
Use: |
| & | | & |
| < | | < |
| > | | > |
| [ | | [ |
| ] | | ] |
Link using PerlMonks shortcuts! What shortcuts can I use for linking?
See Writeup Formatting Tips and other pages linked from there for more info.