if i try to do the first plotting example:
var t = inc(0, 0.01, 20)
var x = sin(0.2*t)
figure(1); title("Demonstrating ploting multiple plots at the same figure")
plot(t, x, Color.GREEN, "sin(0.2*t)")
i get the following error:
<console>:8: error: not found: value inc
var t = inc(0, 0.01, 20)
^
<console>:9: error: not found: value sin
var x = sin(0.2*t)
^
<console>:10: error: not found: value figure
figure(1); title("Demonstrating ploting multiple plots at the same figure")
^
<console>:10: error: not found: value title
figure(1); title("Demonstrating ploting multiple plots at the same figure")
^
<console>:11: error: not found: value plot
plot(t, x, Color.GREEN, "sin(0.2*t)")
i am using scalalab on macos 10.6
Any Idea, what i did wrong?
Original issue reported on code.google.com by axal...@gmail.com on 26 May 2011 at 10:28
Original issue reported on code.google.com by
axal...@gmail.com
on 26 May 2011 at 10:28