Close
Close window
DefineFunction - Maple Help
For the best experience, we recommend viewing online help using Google Chrome or Mozilla Firefox.
Maplesoft logo
Maplesoft logo

Online Help

All Products Maple MapleSim


Home : Support : Online Help : Connectivity : Python : DefineFunction
[フレーム] [フレーム]

Python

DefineFunction

parse and evaluate a Python def statement

Calling Sequence

DefineFunction(defn)

Parameters

defn

-

string

Description

The DefineFunction command sends the given string, defn, to be executed by a Python interpreter. Typically the string defn will contain a Python function definition beginning with "def ".

This command is equivalent to calling Python:-EvalString with the output=none option.

This command always returns NULL. A subsequent EvalString or GetVariable command must be used if you want to get a reference to the procedure that was defined.

This function is part of the Python package, so it can be used in the short form DefineFunction(..) only after executing the command with(Python). However, it can always be accessed through the long form of the command by using Python[DefineFunction](..).

Examples

>

withPython:

>

DefineFunctiondef mysum(a,b): return a+b

<Python object: <function mysum at 0x74050a2587c0>>

(1)
>

EvalStringmysum(1,2)

3

(2)
>

MySumGetVariablemysum

MySum<Python object: <function mysum at 0x74050a2587c0>>

(3)
>

MySum4&comma;5

9

(4)

Indentation matters; use \n for newlines and spaces or \t for tabs

>

DefineFunctiondef flatten(lst):\n\treturn sum( ([x] if not isinstance(x, list) else flatten(x)\n\tfor x in lst), [] )&colon;

>

EvalStringflatten([[1],2,[[3],4,5]])

1&comma;2&comma;3&comma;4&comma;5

(5)

Compatibility

The Python[DefineFunction] command was introduced in Maple 2018.

For more information on Maple 2018 changes, see Updates in Maple 2018 .


Download Help Document

AltStyle によって変換されたページ (->オリジナル) /