JuliaDrawFunctions ExΒΆ
jplot.spad line 404 [edit on github]
Ex: Join(ConvertibleTo InputForm, SetCategory)
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 ofz = f(x, y)
asx
ranges frommin(a, b)
tomax(a, b)
andy
ranges frommin(c, d)
tomax(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 ofz = f(x, y)
asx
ranges frommin(a, b)
to tomax(a, b)
andy
ranges frommin(c, d)
tomax(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 ofz = f(x, y)
asx
ranges frommin(a, b)
tomax(a, b)
andy
ranges frommin(c, d)
tomax(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 ofz = f(x, y)
asx
ranges frommin(a, b)
to tomax(a, b)
andy
ranges frommin(c, d)
tomax(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 ofy = f(x)
asx
ranges frommin(a, b)
tomax(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 ofz = f(x, y)
asx
ranges frommin(a, b)
tomax(a, b)
andy
ranges frommin(c, d)
tomax(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 ofy = f(x)
asx
ranges frommin(a, b)
tomax(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 ofz = f(x, y)
asx
ranges frommin(a, b)
to tomax(a, b)
andy
ranges frommin(c, d)
tomax(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 ofz = f(x, y)
asx
ranges frommin(a, b)
tomax(a, b)
andy
ranges frommin(c, d)
tomax(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 ofz = f(x, y)
asx
ranges frommin(a, b)
to tomax(a, b)
andy
ranges frommin(c, d)
tomax(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 ofz = f(x, y)
asx
ranges frommin(a, b)
tomax(a, b)
andy
ranges frommin(c, d)
tomax(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 ofz = f(x, y)
asx
ranges frommin(a, b)
to tomax(a, b)
andy
ranges frommin(c, d)
tomax(c, d)
;f(x, y)
appears as the title.