/GtkFunctionPlot.jl

Plot by using equation

Primary LanguageJuliaOtherNOASSERTION

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