author | amit |
Wed, 13 Oct 2010 17:32:59 +0530 | |
changeset 324 | 4054b1a6392d |
parent 312 | 8cb703eee88d |
child 423 | 0f0f4993cffe |
permissions | -rw-r--r-- |
312
8cb703eee88d
Manipulating lists LO - script and questions.
Puneeth Chaganti <punchagan@fossee.in>
parents:
diff
changeset
|
1 |
Creating a linear array:\\ |
8cb703eee88d
Manipulating lists LO - script and questions.
Puneeth Chaganti <punchagan@fossee.in>
parents:
diff
changeset
|
2 |
{\ex \lstinline| x = linspace(0, 2*pi, 50)|} |
8cb703eee88d
Manipulating lists LO - script and questions.
Puneeth Chaganti <punchagan@fossee.in>
parents:
diff
changeset
|
3 |
|
8cb703eee88d
Manipulating lists LO - script and questions.
Puneeth Chaganti <punchagan@fossee.in>
parents:
diff
changeset
|
4 |
Plotting two variables:\\ |
8cb703eee88d
Manipulating lists LO - script and questions.
Puneeth Chaganti <punchagan@fossee.in>
parents:
diff
changeset
|
5 |
{\ex \lstinline| plot(x, sin(x))|} |
8cb703eee88d
Manipulating lists LO - script and questions.
Puneeth Chaganti <punchagan@fossee.in>
parents:
diff
changeset
|
6 |
|
8cb703eee88d
Manipulating lists LO - script and questions.
Puneeth Chaganti <punchagan@fossee.in>
parents:
diff
changeset
|
7 |
Plotting two lists of equal length x, y:\\ |
8cb703eee88d
Manipulating lists LO - script and questions.
Puneeth Chaganti <punchagan@fossee.in>
parents:
diff
changeset
|
8 |
{\ex \lstinline| plot(x, y)|} |