Preparing... (0/1)
Build
Get URL
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// Graphs functions starting with 'func'
// Use Ctrl+B (Command+B) to build
float
func
(
float
x
)
{
return
2
.
*
x
*
x
*
x
-3
.
*
x
*
x
+1
.;
}
float
funcRev
(
float
x
)
{
x
=
1
.
-
x
;
return
2
.
*
x
*
x
*
x
-3
.
*
x
*
x
+1
.;
}
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX