Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
Avatar for KuCalc : devops.
Download
50640 views
1
# CoCalc Examples Documentation File
2
# Copyright: SageMath Inc., 2015--2016
3
# License: Creative Commons: Attribution-ShareAlike 4.0 International (CC BY-SA 4.0)
4
---
5
language: sage
6
category: plotting/Intro
7
---
8
title: Introduction
9
descr: This is a very simple example how to plot a function.
10
code: plot(x * sin(x), (x, -10, 10))
11
---
12
title: Simple 2D Plot
13
code: plot(2*x^2 - 3*x + 1, (x, -10, 10))
14
descr: Plot of $\sin$-function.
15
---
16
title: Cool 2D Plot
17
code: plot(x * sin(x), (x, -10, 10))
18
descr: Plot of $f(x) = x \sin(x)$.
19
---
20
title: Simple 3D Plot
21
code: |
22
%var x, y
23
plot3d(sin(x) * cos(y), (x, -10, 10), (y, -10, 10))
24
descr: 3D plot of the $\sin(x)\cos(y)$-function.
25
26