Maple für Professional
Maple für Akademiker
Maple für Studenten
Maple Personal Edition
Maple Player
Maple Player für iPad
MapleSim für Professional
MapleSim für Akademiker
Maple T.A. - Testen & beurteilen
Maple T.A. MAA Placement Test Suite
Möbius - Online-Courseware
Machine Design / Industrial Automation
Luft- und Raumfahrt
Fahrzeugtechnik
Robotics
Energiebranche
System Simulation and Analysis
Model development for HIL
Anlagenmodelle für den Regelungsentwurf
Robotics/Motion Control/Mechatronics
Other Application Areas
Mathematikausbildung
Technik
Allgemein- und berufsbildende Schulen
Testen und beurteilen
Studierende
Finanzmodelle
Betriebsforschung
Hochleistungsrechnen
Physik
Live-Webinare
Aufgezeichnete Webinare
Geplante Veranstaltungen
MaplePrimes
Maplesoft-Blog
Maplesoft-Mitgliedschaft
Maple Ambassador Program
MapleCloud
Technische Whitepapers
E-Mail Newsletters
Maple-Bücher
Math Matters
Anwendungs-Center
MapleSim Modell-Galerie
Anwenderberichte
Exploring Engineering Fundamentals
Lehrkonzepte mit Maple
Maplesoft Welcome-Center
Resource-Center für Lehrer
Help-Center für Studierende
branches - plot the branches of a multi-valued function
Calling Sequence
branches(f)
branches(f, ...)
branches(f, 'show_defaults')
Parameters
f
-
function name
...
options
'show_defaults'
lists the defaults used by branches for the given function
Description
This routine produces a plot of the ranges of the branches of the complex multi-valued function f, if this information is known.
One of the major difficulties with multi-valued functions over the complex number field is determining a principal branch, and then assigning the values of the function consistently on the branch cut(s). This latter assignment is referred to as closure.
branches can use one of two methods to indicate how closure on the branch cut(s) of the function f is defined: color or curve thickening. The default is to use color. In this case, boundary curves of the same color belong to the same range. This is usually sufficient to deduce the closure. In addition, the principal branch of the function is labeled in the same color as its boundary.
For non-color devices, or for devices on which the color variation is insufficient, curve thickening can be used to indicate closure by specifying the option thick. This will use a default line thickness to widen the boundary curve into the region to which it is attached.
Curve thickening is simulated by drawing parallel curves. If the default values for this mechanism are not adequate for the plotting device, or if there is still insufficient visual information available to deduce closure, the following additional options can be used. (The presence of any of these options implies that curve thickening will be used.)
thick = nonnegative
Sets line thickness to units.
gap = positive
Set the gap between the parallel curves to units
skip = nonnegint
Specifies how many curves to omit after the initial one
An additional option, colors, can be used to change the selection of colors used to display the plots. The format is:
colors = list
Specifies the colors of the curves. See plot colors for details.
The following functions are currently known to branches:
arcsin
arccos
arctan
arccsc
arcsec
arccot
arcsinh
arccosh
arctanh
arccsch
arcsech
arccoth
ln
LambertW
Examples
The command to create the plot from the Plotting Guide is
The curve and text colors can be modified
Show the default parameter values
thick = .6e-1 gap = .2e-1 skip = 0 colors= ["magenta", "blue", "red", "green", "cyan", "yellow"]
See Also
initialfunctions, plot colors
Download Help Document