Last active
April 4, 2021 18:56
-
-
Save lidangzzz/b9c3f622fe1ff8857f06d3d09dda9be2 to your computer and use it in GitHub Desktop.
my_demo.hhs
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// generate 2D points as vectors of x and y | |
x = range(-10,10,0.1); | |
y = sin(x) + random(1,x.cols); | |
// plot x and y as scatter | |
plot2D(x,y); | |
// ploy x and y as line | |
plot2DLine(x,y); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment