PLOT

PLOT xmin, xmax USE f(x)

Plots the graph of f(x) in the range from xmin to xmax. The variable must be x.

Example

' Set wite background and drawing color to red
color rgb(255,0,0), rgb(255,255,255)
cls

' Define function and plot
def f(x) = sin(x)
plot 0, 2*pi USE f(x)
Graphics
If there is insufficient information on this page and you wish learn more about PLOT, please send an email to smallbasic@gmail.com. You can help to improve information about PLOT by submitting a pull request, click View Source for details. Note, an offline language reference text file is also available - see the Download section.