´

mult_disjunkt_polynom_polynom

synopsis: INT mult_disjunkt_polynom_polynom(OP a,b,c)

description:

a and b are POLYNOM objects and c becomes the result of the multiplication of a and b, where the alphabets of the two POLYNOM objects are taken different

example:

 Read a POLYNOM and multiply it with itself, assumming the two
 alphabets to be different

#include "def.h"
#include "macro.h"
 main()
 {
 OP b,d;
 anfang();
 b=callocobject();
 d=callocobject();
 scan(POLYNOM,b);
 mult_disjunkt_polynom_polynom(b,b,d);
 println(d);
 freeall(b); freeall(d);
 ende();
 }


Send comments or suggestions to:
symmetrica (at) symmetrica.de

this page was automatically generated on So Jan 4 10:36:01 CET 2009 on the machine btn6xf

University of Bayreuth -