Hi,
I would like to access some structures in PDL, such as the pdl
structure defined in pdl.h. I know that I have to specify something
else, such as the boot
use PDL;
use Inline C => <<'END_OF_C_CODE';
#include "pdl.h"
void dump_pdl(pdl *a) {
return;
}
END_OF_C_CODE
my $pdl_data = sequence(10);
dump_pdl($pdl_data);
