window
Displays an object in a new panel in a new, floating window.
Syntax
-
window(X)
-
X
is any object
-
Description
window(X)
displays X
in a panel in a new floating (top-level) window.
Examples
window(π)
window(ExampleData("London"))
If X
is a kernel function, the Pascal source code of the kernel function will be shown in a new source code viewer panel. If X
is a custom function, its abstract syntax tree will be displayed:
window(function(wind))
f ≔ t ↦ √(t^2 + 1/t^2 + 1); window(f)
Calling window(X)
is functionally equivalent to double-clicking the X
identifier in the Identifiers panel.