JuliaDrawFunctions ExΒΆ

jplot.spad line 404 [edit on github]

JuliaDrawFunctions provides top level functions for drawing graphics of expressions.

jlContour!: (Ex, SegmentBinding Float, SegmentBinding Float) -> Void

jlContour!(f(x, y), x = a..b, y = c..d) adds the surface of z = f(x, y) as x ranges from min(a, b) to max(a, b) and y ranges from min(c, d) to max(c, d) on the existing graph window. f(x, y) appears as the title.

jlContour: (Ex, SegmentBinding Float, SegmentBinding Float) -> Void

jlContour(f(x, y), x = a..b, y = c..d) draws the surface of z = f(x, y) as x ranges from min(a, b) to to max(a, b) and y ranges from min(c, d) to max(c, d). f(x, y) appears as the title.

jlContourf!: (Ex, SegmentBinding Float, SegmentBinding Float) -> Void

jlContourf!(f(x, y), x = a..b, y = c..d) adds the surface of z = f(x, y) as x ranges from min(a, b) to max(a, b) and y ranges from min(c, d) to max(c, d) on the existing graph window. f(x, y) appears as the title. Fill area between contours.

jlContourf: (Ex, SegmentBinding Float, SegmentBinding Float) -> Void

jlContourf(f(x, y), x = a..b, y = c..d) draws the surface of z = f(x, y) as x ranges from min(a, b) to to max(a, b) and y ranges from min(c, d) to max(c, d). f(x, y) appears as the title. Fill area between contours.

jlPlot!: (Ex, SegmentBinding Float) -> Void

jlPlot!(f(x), x = a..b) adds the graph of y = f(x) as x ranges from min(a, b) to max(a, b) on the existing graphic window. f(x) appears as the title.

jlPlot!: (Ex, SegmentBinding Float, SegmentBinding Float) -> Void

jlPlot!(f(x, y), x = a..b, y = c..d) adds the graph of z = f(x, y) as x ranges from min(a, b) to max(a, b) and y ranges from min(c, d) to max(c, d) on the existing graph window. f(x, y) appears as the title.

jlPlot: (Ex, SegmentBinding Float) -> Void

jlPlot(f(x), x = a..b) draws the graph of y = f(x) as x ranges from min(a, b) to max(a, b). f(x) appears the title.

jlPlot: (Ex, SegmentBinding Float, SegmentBinding Float) -> Void

jlPlot(f(x, y), x = a..b, y = c..d) draws the graph of z = f(x, y) as x ranges from min(a, b) to to max(a, b) and y ranges from min(c, d) to max(c, d). f(x, y) appears as the title.

jlSurface!: (Ex, SegmentBinding Float, SegmentBinding Float) -> Void

jlSurface!(f(x, y), x = a..b, y = c..d) adds the surface of z = f(x, y) as x ranges from min(a, b) to max(a, b) and y ranges from min(c, d) to max(c, d) on the existing graph window. f(x, y) appears as the title.

jlSurface: (Ex, SegmentBinding Float, SegmentBinding Float) -> Void

jlSurface(f(x, y), x = a..b, y = c..d) draws the surface of z = f(x, y) as x ranges from min(a, b) to to max(a, b) and y ranges from min(c, d) to max(c, d). f(x, y) appears as the title.

jlWireframe!: (Ex, SegmentBinding Float, SegmentBinding Float) -> Void

jlWireframe!(f(x, y), x = a..b, y = c..d) adds the wireframe of z = f(x, y) as x ranges from min(a, b) to max(a, b) and y ranges from min(c, d) to max(c, d) on the existing graph window. f(x, y) appears as the title.

jlWireframe: (Ex, SegmentBinding Float, SegmentBinding Float) -> Void

jlWireframe(f(x, y), x = a..b, y = c..d) draws the wireframe of z = f(x, y) as x ranges from min(a, b) to to max(a, b) and y ranges from min(c, d) to max(c, d); f(x, y) appears as the title.