TU-Berlin → Inst. f. Mathematik → Algebra und Zahlentheorie → KASH → Documentation → Reference Manual
KASH3 Reference Manual
search    

Function

Map ( any domain, any codomain, func phi ) -> map()

Description

Create a map with domain 'domain' and codomain 'codomain' from the function 'phi'.

Examples

x_mult := function(a) # this function returns a map that multiplies by 'I*a' local phi; phi := function(b) return b*a*I; end; return Map(R,C,phi); end; x_f := x_mult(5); x_f(2); Image(3.1,x_f); Domain(x_f); Codomain(x_f);

Built: Mon Nov 14 21:12:39 UTC 2005 on mack
The KANT Group