graph.open: Open Graph

Description Usage Arguments Details Value Author(s) Examples

Description

Open a graph

Usage

1

Arguments

g

a reference object of class 'graph'

Details

If g is NULL a new graph is open. Otrewise the graph liked to g is open.

Value

Returns a reference object of class 'graph' linked to the open graph

Author(s)

Filippo Monari

Examples

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
modello.init(10, 10, 10, 10)
x1 = number(1)
x2 = number(3)
x3 = number(2)
g = graph.open()
y = log((x1 + x3)**x2)
graph.close()
print(y$v)
x1$v = 2
g$op()
print(y$v)
y$dv = 1
g$bw()
print(x1$dv)
print(x2$dv)
print(x3$dv)
modello.close()

modello documentation built on Feb. 2, 2021, 9:06 a.m.

Related to graph.open in modello...