Skip to content

Instantly share code, notes, and snippets.

@briochemc
Created September 3, 2020 09:10
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save briochemc/03b6c4ac194aca7d237d99adc244c1ae to your computer and use it in GitHub Desktop.
Save briochemc/03b6c4ac194aca7d237d99adc244c1ae to your computer and use it in GitHub Desktop.
### A Pluto.jl notebook ###
# v0.11.12
using Markdown
using InteractiveUtils
# ╔═╡ acb74b48-edc4-11ea-12eb-d9193f5ab64f
using Plots
# ╔═╡ b2c05e44-edc4-11ea-356f-c1042b919836
x = y = range(-5, 5, length = 40)
# ╔═╡ b577179a-edc4-11ea-1eeb-ebbca1496cd9
f(x, y) = sin(x + 10sin(3.0)) + cos(y)
# ╔═╡ b82e7f28-edc4-11ea-07fb-17d6224e5805
p = plot(x, y, f, st=:surface)
# ╔═╡ Cell order:
# ╠═acb74b48-edc4-11ea-12eb-d9193f5ab64f
# ╠═b2c05e44-edc4-11ea-356f-c1042b919836
# ╠═b577179a-edc4-11ea-1eeb-ebbca1496cd9
# ╠═b82e7f28-edc4-11ea-07fb-17d6224e5805
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment