different meaning of function parameters?



Not that it really matters, but the function my_factor1 can be written as

  my_factor1(a,x,q) := ratcoef(q,x,1)/a;

Use 'return' to explicitly exit a block.

Barton

-----maxima-bounces at math.utexas.edu wrote: -----


>> my_factor1(a,x,q) := block(
>>         [res],
>>         res : ratcoef(q,x,1)/a,
>>         return(res)
>> )$