Skip to content
This repository was archived by the owner on Mar 1, 2019. It is now read-only.

Latest commit

 

History

History
44 lines (34 loc) · 1022 Bytes

File metadata and controls

44 lines (34 loc) · 1022 Bytes

GtkFunctionPlot

This repository is archived. Up-to-date version is located in goropikari/GUIAppExample.jl

screenshot

Installation and usage

Pkg.clone("https://github.com/goropikari/GtkFunctionPlot.jl")
using GtkFunctionPlot

Sample

plot 2d

sin(x) # or y = sin(x)

plot2d

contour

sin(sqrt(x^2 + y^2) ) / sqrt(x^2 + y^2) # or z = sin(sqrt(x^2 + y^2) ) / sqrt(x^2 + y^2)

contour

2d parametric function

sin(t), sin(2t) # or x = sin(t), y = sin(2t)

2d para

plot 3d

sin(sqrt(x^2 + y^2) ) / sqrt(x^2 + y^2) # or z = sin(sqrt(x^2 + y^2) ) / sqrt(x^2 + y^2)

plot3d

3d parametric function

cos(t), sin(t), t # x = cos(t), y = sin(t), z = t

3d para