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
ilog[b] - compute integer base b logarithm
ilog2 - compute integer base 2 logarithm
ilog10 - compute integer base 10 logarithm
Calling Sequence
ilog[b](x)
ilog2(x)
ilog10(x)
Parameters
b
-
positive real number
x
expression
Description
These functions compute integer approximations to logarithms of x. They are based on the IEEE function logb.
The ilog[b](x) function approximates the integer base b logarithm, where the default base is exp(1).
You can enter the command ilog[b] using either the 1-D or 2-D calling sequence. For example, ilog[2](50) is equivalent to .
If x is real, ilog[b](x) returns r such that.
The ilog2(x) function returns the integer base 2 logarithm of x.
If x is real and r = ilog2(x), then r is either an exact integer or special symbolic value, and.
If x is a complex numeric, ilog2(x) returns max(ilog2(Re(x)), ilog2(Im(x))).
If x is a special symbolic value, the indicated result is returned.
1.
2. =
3. =
The ilog10(x) function returns the integer base 10 logarithm of x.
If x is real, ilog10(x) returns r such that r is either an exact integer or special symbolic value, and.
If x is a complex numeric, ilog10(x) returns max(ilog10(Re(x)), ilog10(Im(x))).
The computation of ilog2(x) and ilog10(x) is more efficient than ilog[b](x), b <> 2, 10.
Thread Safety
The ilog2 and ilog10 commands are thread-safe as of Maple 15.
For more information on thread safety, see index/threadsafe.
Examples
See Also
exceptions, float, initialfunctions, type
Download Help Document