Update docs to match implementation of $build_and_dump_html_index
[maxima.git] / doc / info / es / makeOrders.texi
blob386d131aa9e9c871713cc26da7e7fc88c2bc8ca3
1 @c English version: 2008-03-28
2 @menu
3 * Funciones y variables para makeOrders::
4 @end menu
7 @node Funciones y variables para makeOrders,  , makeOrders, makeOrders
8 @section Funciones y variables para makeOrders
10 @deffn {Función} makeOrders (@var{indvarlist},@var{orderlist})
11 Devuelve una lista con las potencias de las variables de un polinomio término a término.
13 @example
14 (%i1) load("makeOrders")$
16 (%i2) makeOrders([a,b],[2,3]);
17 (%o2) [[0, 0], [0, 1], [0, 2], [0, 3], [1, 0], [1, 1],
18             [1, 2], [1, 3], [2, 0], [2, 1], [2, 2], [2, 3]]
19 (%i3) expand((1+a+a^2)*(1+b+b^2+b^3));
20        2  3      3    3    2  2      2    2    2
21 (%o3) a  b  + a b  + b  + a  b  + a b  + b  + a  b + a b
22                                                   2
23                                            + b + a  + a + 1
24 @end example
25 donde @code{[0, 1]} se asocia al término @math{b} y @code{[2, 3]} a @math{a^2 b^3}.
27 Antes de hacer uso de esta función ejecútese @code{load("makeOrders")}.
28 @end deffn