getting-started-strings/quickref.tex
author Puneeth Chaganti <punchagan@fossee.in>
Wed, 13 Oct 2010 11:13:01 +0530
changeset 313 b9b7bfce773e
child 436 e62bc810999c
permissions -rw-r--r--
Getting started with strings LO - script and questions.
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
313
b9b7bfce773e Getting started with strings LO - script and questions.
Puneeth Chaganti <punchagan@fossee.in>
parents:
diff changeset
     1
Creating a linear array:\\
b9b7bfce773e Getting started with strings LO - script and questions.
Puneeth Chaganti <punchagan@fossee.in>
parents:
diff changeset
     2
{\ex \lstinline|    x = linspace(0, 2*pi, 50)|}
b9b7bfce773e Getting started with strings LO - script and questions.
Puneeth Chaganti <punchagan@fossee.in>
parents:
diff changeset
     3
b9b7bfce773e Getting started with strings LO - script and questions.
Puneeth Chaganti <punchagan@fossee.in>
parents:
diff changeset
     4
Plotting two variables:\\
b9b7bfce773e Getting started with strings LO - script and questions.
Puneeth Chaganti <punchagan@fossee.in>
parents:
diff changeset
     5
{\ex \lstinline|    plot(x, sin(x))|}
b9b7bfce773e Getting started with strings LO - script and questions.
Puneeth Chaganti <punchagan@fossee.in>
parents:
diff changeset
     6
b9b7bfce773e Getting started with strings LO - script and questions.
Puneeth Chaganti <punchagan@fossee.in>
parents:
diff changeset
     7
Plotting two lists of equal length x, y:\\
b9b7bfce773e Getting started with strings LO - script and questions.
Puneeth Chaganti <punchagan@fossee.in>
parents:
diff changeset
     8
{\ex \lstinline|    plot(x, y)|}