File: na.doc

package info (click to toggle)
symmetrica 2.0-1
  • links: PTS
  • area: main
  • in suites: lenny, squeeze, wheezy
  • size: 3,892 kB
  • ctags: 4,938
  • sloc: ansic: 97,272; makefile: 8
file content (21 lines) | stat: -rw-r--r-- 407 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21

NAME:
	ndg
SYNOPSIS:
	INT ndg(OP part, OP perm, OP res)
DESCRIPTION:
	computes integral irreducible rep labeled by the 
	PARTITION object part for the PERMUTATION
	object perm. The result will be a MATRIX object.
EXAMPLE:
        #include "def.h"
        #include "macro.h"

        BEGIN
        scan(scanobjectkind(),a);
        scan(PERMUTATION,b);
        ndg(a,b,c);
        println(c);
        END