blob: 39ede523e438cebd3eaa48966bec36878fce092f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
Creating a Sequence:\\
{\ex \lstinline| L = [0.1, 0.2, 0.3] |}
Squaring a sequence:\\
{\ex \lstinline| tsquare=square(t) |}
Plotting two list using small dots:\\
{\ex \lstinline| plot(L,tsquare,'.') |}
Plotting two list using big dots:\\
{\ex \lstinline| plot(L,tsquare,'o') |}
Plotting an errorbar in blue color:\\
{\ex \lstinline| errorbar(L,tsquare,xerr=delta_L, yerr=delta_T, fmt='b.') |}
|