|
|
|
last edited 17 years ago by gdr |
| 1 2 3 4 | ||
|
Editor: kratt6
Time: 2007/12/20 01:22:44 GMT-8 |
||
| Note: | ||
added:
From kratt6 Thu Dec 20 01:22:44 -0800 2007
From: kratt6
Date: Thu, 20 Dec 2007 01:22:44 -0800
Subject:
Message-ID: <20071220012244-0800@axiom-wiki.newsynthesis.org>
Category: Axiom Mathematics => Axiom Interpreter
Originally Savannah bug #6490
The NAG interpreter and the Axiom interpreter do not accept the when and otherwise verbs when defining piecewise functions.
There are no library operations named when
axiomch : Integer -> UnivariatePolynomial(x,FRAC(INT))
axiomch(0) == 1
axiomch(1) == x
axiomch(n) == 2 * x * ch(n-1) - ch(n-2) when n > 1
axiomch(2) There are no library operations named when Use HyperDoc Browse or issue )what op when to learn if there is any operation containing " when " in its name. Cannot find a definition or applicable library operation named when with argument type(s) Integer Perhaps you should use "@" to indicate the required return type, or "$" to specify which version of the function you need. FriCAS will attempt to step through and interpret the code.
Compiling function ch with type Integer -> UnivariatePolynomial(x,
Fraction Integer)
There are no library operations named when
Use HyperDoc Browse or issue
)what op when
to learn if there is any operation containing " when " in its
name.
Cannot find a definition or applicable library operation named when
with argument type(s)
Integer
Perhaps you should use "@" to indicate the required return type,
or "$" to specify which version of the function you need.The parser is broken
is when mentioned in the documentation?