diff options
author | Puneeth Chaganti | 2010-12-01 16:51:35 +0530 |
---|---|---|
committer | Puneeth Chaganti | 2010-12-01 16:51:35 +0530 |
commit | f3a34dfb4e879f3eb7274704f44546aac4add88f (patch) | |
tree | 1cb0a8cc5dbd5ee2b374350915ed2addfa0fb447 /getting-started-with-arrays/quickref.tex | |
parent | 347866ed0d29db61ee062563b1e1616cfb85588c (diff) | |
download | st-scripts-f3a34dfb4e879f3eb7274704f44546aac4add88f.tar.gz st-scripts-f3a34dfb4e879f3eb7274704f44546aac4add88f.tar.bz2 st-scripts-f3a34dfb4e879f3eb7274704f44546aac4add88f.zip |
Renamed all LOs to match with their names in progress.org.
Diffstat (limited to 'getting-started-with-arrays/quickref.tex')
-rw-r--r-- | getting-started-with-arrays/quickref.tex | 14 |
1 files changed, 0 insertions, 14 deletions
diff --git a/getting-started-with-arrays/quickref.tex b/getting-started-with-arrays/quickref.tex deleted file mode 100644 index 10714c4..0000000 --- a/getting-started-with-arrays/quickref.tex +++ /dev/null @@ -1,14 +0,0 @@ -Creating an array:\\ -{\ex \lstinline| a = array([[1,2,3,4],[5,6,7,8]])|} - -Finding shape of array:\\ -{\ex \lstinline| a.shape|} - -Reshape an array:\\ -{\ex \lstinline| a.reshape(4,2)|} - -Creating identity matrix:\\ -{\ex \lstinline| identity(3)|} - -Creating matrix with all zeros:\\ -{\ex \lstinline| z = zeros((4,2))|} |