getting-started-sagenotebook/quickref.tex
author anand
Thu, 11 Nov 2010 00:24:11 +0530
changeset 474 f137f3e036d9
parent 314 11869b16d86b
child 460 5d032e253580
permissions -rw-r--r--
checklist OK for `gettin started with for loops` 1;2305;0c
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
314
11869b16d86b Getting started with sagenotebook LO - script and questions.
Puneeth Chaganti <punchagan@fossee.in>
parents:
diff changeset
     1
Creating a linear array:\\
11869b16d86b Getting started with sagenotebook LO - script and questions.
Puneeth Chaganti <punchagan@fossee.in>
parents:
diff changeset
     2
{\ex \lstinline|    x = linspace(0, 2*pi, 50)|}
11869b16d86b Getting started with sagenotebook LO - script and questions.
Puneeth Chaganti <punchagan@fossee.in>
parents:
diff changeset
     3
11869b16d86b Getting started with sagenotebook LO - script and questions.
Puneeth Chaganti <punchagan@fossee.in>
parents:
diff changeset
     4
Plotting two variables:\\
11869b16d86b Getting started with sagenotebook LO - script and questions.
Puneeth Chaganti <punchagan@fossee.in>
parents:
diff changeset
     5
{\ex \lstinline|    plot(x, sin(x))|}
11869b16d86b Getting started with sagenotebook LO - script and questions.
Puneeth Chaganti <punchagan@fossee.in>
parents:
diff changeset
     6
11869b16d86b Getting started with sagenotebook LO - script and questions.
Puneeth Chaganti <punchagan@fossee.in>
parents:
diff changeset
     7
Plotting two lists of equal length x, y:\\
11869b16d86b Getting started with sagenotebook LO - script and questions.
Puneeth Chaganti <punchagan@fossee.in>
parents:
diff changeset
     8
{\ex \lstinline|    plot(x, y)|}