SlideShare a Scribd company logo
Introduction to Arrays, Variables
Preview
• What is an array and the NumPy package
– Creating arrays
– Array indexing
– Array inquiry
– Array manipulation
– Array operations
• What is (in) CDAT?
– Masked variables, axes
– Brief tour of vcdat
What is an array and the NumPy package
• An array is like a list except:
– All elements are of the same type, so operations with 
arrays are much faster.
– Multi‐dimensional arrays are more clearly supported.
– Array operations are supported.
• NumPy is the standard array package in Python.  
(There are others, but the community has now 
converged on NumPy.)
• To utilize NumPy's functions and attributes, you 
import the package numpy.
Creating arrays
• Use the array function on a list:
import numpy
a = numpy.array([[2, 3, -5],[21, -2, 1]])
• The array function will match the array type to 
the contents of the list.
• To force a certain numerical type for the array, 
set the dtype keyword to a type code:
a = numpy.array([[2, 3, -5],[21, -2, 1]],
dtype='d')
Creating arrays (cont.)
• Some common typecodes:
– 'd':  Double precision floating
– 'f':  Single precision floating
– 'i':  Short integer
– 'l':  Long integer
• To create an array of a given shape filled with zeros, 
use the zeros function (with dtype being optional):
a = numpy.zeros((3,2), dtype='d')
• To create an array the same as range, use the 
arange function (again dtype is optional):
a = numpy.arange(10)
Array indexing
• Like lists, element addresses start with zero, so the first 
element of 1‐D array a is a[0], the second is a[1], etc.
• Like lists, you can reference elements starting from the end, 
e.g., element a[-1] is the last element in a 1‐D array.
• Slicing an array:
– Element addresses in a range are separated by a colon.
– The lower limit is inclusive, and the upper limit is exclusive.
• Type the following in the Python interpreter:
import numpy
a = numpy.array([2, 3.2, 5.5, -6.4, -2.2, 2.4])
• What is a[1] equal to?  a[1:4]?  Share your answers 
with your neighbor.
Array indexing (cont.)
• For multi‐dimensional arrays, indexing between different 
dimensions is separated by commas.
• The fastest varying dimension is the last index.  Thus, a 2‐D array is 
indexed [row, col].
• To specify all elements in a dimension, use a colon by itself for the 
dimension.
• Type the following in the Python interpreter:
import numpy
a = numpy.array([[2, 3.2, 5.5, -6.4, -2.2, 2.4],
[1, 22, 4, 0.1, 5.3, -9],
[3, 1, 2.1, 21, 1.1, -2]])
• What is a[1,2] equal to?  a[1,:]?  a[1:4,0]?  What is 
a[1:4,0:2]? (Why are there no errors?)  Share your answers 
with your neighbor.
Array inquiry
• Some information about arrays comes through functions on 
the array, others through attributes attached to the array.
• For this and the next slide, assume a and b are numpy
arrays.
• Shape of the array:  numpy.shape(a)
• Rank of the array:  numpy.rank(a)
• Number of elements in the array (do not use len): 
numpy.size(a)
• Typecode of the array:  a.dtype.char
• Try these commands out in your interpreter on an array you 
already created and see if you get what you expect.
Array manipulation
• Reshape the array:  numpy.reshape(a, (2,3))
• Transpose the array:  numpy.transpose(a)
• Flatten the array into a 1‐D array:  numpy.ravel(a)
• Repeat array elements:  numpy.repeat(a,3)
• Convert array a to another type:
b = a.astype('f')
where the argument is the typecode for b.
• Try these commands out in your interpreter on an 
array you already created and see if you get what you 
expect.
Array operations:  Method 1 (loops)
• Example:  Multiply two arrays together, element‐by‐element:
import numpy
shape_a = numpy.shape(a)
product = numpy.zeros(shape_a, dtype='f')
a = numpy.array([[2, 3.2, 5.5, -6.4],
[3, 1, 2.1, 21]])
b = numpy.array([[4, 1.2, -4, 9.1],
[6, 21, 1.5, -27]])
for i in xrange(shape_a[0]):
for j in xrange(shape_a[1]):
product[i,j] = a[i,j] * b[i,j]
• Note the use of xrange (which is like range, but provides only 
one element of the list at a time) to create a list of indices.
• Loops are relatively slow.
• What if the two arrays do not have the same shape?
Array operations:  Method 2 (array syntax)
• Example:  Multiply two arrays together, element‐by‐element:
import numpy
a = numpy.array([[2, 3.2, 5.5, -6.4],
[3, 1, 2.1, 21]])
b = numpy.array([[4, 1.2, -4, 9.1],
[6, 21, 1.5, -27]])
product = a * b
• Arithmetic operators are automatically defined to act element‐wise 
when operands are NumPy arrays.  (Operators have function 
equivalents, e.g., product, add, etc.)
• Output array automatically created.
• Operand shapes are automatically checked for compatibility.
• You do not need to know the rank of the arrays ahead of time.
• Faster than loops.
Array operations:  Including tests in an array—
Method 1:  Loops
• Often times, you will want to do calculations on an array that 
involves conditionals.
• You could implement this in a loop.  Say you have a 2‐D array a and 
you want to return an array answer which is double the value 
when the element in a is greater than 5 and less than 10, and 
output zero when it is not.  Here's the code:
answer = numpy.zeros(numpy.shape(a), dtype='f')
for i in xrange(numpy.shape(a)[0]):
for j in xrange(numpy.shape(a)[1]):
if (a[i,j] > 5) and (a[i,j] < 10):
answer[i,j] = a[i,j] * b[i,j]
else:
pass
– The pass command is used when you have an option where you 
don't want to do anything.
– Again, loops are slow, and the if statement makes it even slower.
Array operations:  Including tests in an array—
Method 2:  Array syntax
• Comparison operators (implemented either as operators or functions) act 
element‐wise, and return a boolean array.  For instance, try these for any 
array a and observe the output:
answer = a > 5
answer = numpy.greater(a, 5)
• Boolean operators are implemented as functions that also act element‐
wise (e.g., logical_and, logical_or).
• The where function tests any condition and applies operations for true 
and false cases, as specified, on an element‐wise basis.  For instance, 
consider the following case where you can assume a =
numpy.arange(10):
condition = numpy.logical_and(a>5, a<10)
answer = numpy.where(condition, a*2, 0)
– What is condition?  answer?  Share with your neighbor.
– This code implements the example in the last slide, and is both cleaner and 
runs faster.
Array operations:  Including tests in an array—
Method 2:  Array syntax (cont.)
• You can also accomplish what the where function does in the 
previous slide by taking advantage of how arithmetic operations on 
boolean arrays treat True as 1 and False as 0.
• By using multiplication and addition, the boolean values become 
selectors.  For instance:
condition = numpy.logical_and(a>5, a<10)
answer = ((a*2)*condition) + 
(0*numpy.logical_not(condition))
• This method is also faster than loops.
• Try comparing the relative speeds of these different ways of 
applying tests to an array.  The time module has a function time
so time.time() returns the current system time relative to the 
Epoch.  (This is an exercise that is available online.)
Array operations:  Additional functions
• Basic mathematical functions:  sin, exp,
interp, etc.
• Basic statistical functions:  correlate,
histogram, hamming, fft, etc.
• NumPy has a lot of stuff!  Use 
help(numpy), as well as 
help(numpy.x), where x is the name of a 
function, to get more information.
Exercise 1:  Reading a multi‐column text 
file (simple case)
• For the file two‐col_rad_sine.txt in files, write 
code to read the two columns of data into two 
arrays, one for angle in radians (column 1) and 
the other for the sine of the angle (column 2).
• The two columns are separated by tabs.  The 
file's newline character is just 'n' (though 
this isn't something you'll need to know to do 
the exercise).
Exercise 1:  Reading a multi‐column text 
file (solution for simple case)
import numpy
DATAPATH = ‘/CAS_OBS/sample_cdat_data/’
fileobj=open(DATAPATH + 'two-col_rad_sine.txt', 'r')
data_str = fileobj.readlines()
fileobj.close()
radians = numpy.array(len(data_str), 'f')
sines = numpy.array(len(data_str), 'f')
for i in xrange(len(data_str)):
split_istr = data_str[i].split('t')
radians[i] = float(split_istr[0])
sines[i] = float(split_istr[1])
Exercise 2 (Homework): Reading 
formatted data
• In the directory 
/CAS_OBS/sample_cdat_data/ you 
will see the following files
– REGIONRF.TXT (a data file with rainfall data for 
India)
– test_FortranFormat.py
• Look at the python program and try to 
understand what it does and do the exercise 
given in it.
What is CDAT?
• Designed for climate science data, CDAT was first released in 1997
• Based on the object‐oriented Python computer language
• Added Packages that are useful to the climate community and other 
geophysical sciences 
– Climate Data Management System (CDMS)
– NumPy / Masked Array / Metadata
– Visualization (VCS, IaGraphics, Xmgrace, Matplotlib, VTK, Visus, etc.)
– Graphical User Interface (VCDAT)
– XML representation (CDML/NcML) for data sets
• One environment from start to finish
• Integrated with other packages (i.e., LAS, OPeNDAP, ESG, etc.)
• Community Software (BSD open source license)
• URL: http://www‐pcmdi.llnl.gov/software‐portal (CDAT Plone site)
CDMS: cdms2
• Best way to ingest and write NetCDF‐CF, HDF, Grib, PP, 
DRS, etc., data!
• Opening a file for reading
import cdms2
f=cdms2.open(file_name)
– It will open an existing file protected against writing
• Opening a new file for writing
f=cdms2.open(file_name,’w’)
– It will create a new file even if it already exists
• Opening an existing file for writing
f=cdms2.open(file_name,’r+’) # or ‘a’
– It will open an existing file ready for writing or reading
A NetCDF example and VCDAT
• Change directory to the following directory
cd /CAS_OBS/mo/sst/HadISST/
• Check the contents of the netcdf file
ncdump sst_HadISST_Climatology_1961-1990.nc | more
• Start vcdat
vcdat &
• Note what happens when you click on the “file” 
pulldown arrow
• Select variable “sst”
• Press “plot”
Exercise 2: Opening a NetCDF file
import cdms2
DATAPATH = ‘/CAS_OBS/mo/sst/HadISST/’
f = cdms2.open(DATAPATH + ‘sst_HadISST_Climatology_1961-1990.nc’)
# You can query the file
f.listvariables()
# You can “access” the data through file variable
x = f[‘sst’]
# or read all of it into memory
y = f(‘sst’)
# You can get some information about the variables by
x.info()
y.info()
# You can also find out what class the object x or y belong to
print x.__class__
# Close the file
f.close()
CDMS: cmds2 (cont.)
• Multiple way to retrieve data
– All of it, omitted dimensions are retrieved entirely
s=f(‘var’)
– Specifying dimension type and values
S=f(‘var’, time=(time1,time2))
• Known dimension types: time, level, latitude, longitude (t,z,y,x) 
– Dimension names and values
S=f(‘var’,dimname1=(val1,val2))
– Sometimes indices are more useful than actual values
S=f(‘var’,time=slice(index1,index2,step))
cdtime module
• Import the cdtime module
import cdtime
• Relative time
r = cdtime.reltime(19, “days since 2011-5-1”)
• Component time
c = cdtime.comptime(2011, 5, 20)
• You can interchange between component and 
relative time
c.torel(“days since 2011-1-1”)
r.tocomp()
Arrays, Masked Arrays and Masked 
Variables
array numpy
array mask
numpy.ma
+
array mask domain metadata MV2
+ + + id,units,…
Arrays, Masked Arrays and Masked 
Variables
>>> a=numpy.array([[1.,2.],[3,4],[5,6]])
>>> a.shape
(3, 2)
>>> a[0]
array([ 1.,  2.])
>>> numpy.ma.masked_greater(a,4)
masked_array(data =
[[1.0 2.0]
[3.0 4.0]
[‐‐ ‐‐]],
mask =
[[False False]
[False False]
[ True  True]],
fill_value = 1e+20)
>>>b = MV2.masked_greater(a,4)
>>> b.info()
*** Description of Slab variable_3 ***
id: variable_3
shape: (3, 2)
filename: 
missing_value: 1e+20
comments: 
grid_name: N/A
grid_type: N/A
time_statistic: 
long_name: 
units: 
No grid present.
** Dimension 1 **
id: axis_0
Length: 3
First:  0.0
Last:   2.0
Python id:  0x2729450
** Dimension 2 **
id: axis_1
Length: 2
First:  0.0
Last:   1.0
Python id:  0x27292f0
*** End of description for variable_3 ***
These values 
are now 
MASKED
(average 
would ignore 
them)
Additional info 
such as 
metadata
and axes
Summary
• Take advantage of NumPy's array syntax to 
make operations with arrays both faster and 
more flexible (i.e., act on arrays of arbitrary 
rank).
• Use any one of a number of Python packages 
(e.g., CDAT, PyNIO, pysclint, PyTables, 
ScientificPython) to handle netCDF, HDF, etc. 
files.
Acknowledgments
Original presentation by Dr. Johnny Lin (Physics 
Department, North Park University, Chicago, 
Illinois).
Author email:  johnny@johnny‐lin.com.  Presented 
as part of an American Meteorological Society short 
course in Seattle, Wash. on January 22, 2011.  This 
work is licensed under a Creative Commons 
Attribution‐NonCommercial‐ShareAlike 3.0 United 
States License.

More Related Content

PPTX
Introduction to numpy
Gaurav Aggarwal
 
PDF
Python NumPy Tutorial | NumPy Array | Edureka
Edureka!
 
PPTX
arrays-120712074248-phpapp01
Abdul Samee
 
PDF
CSS Unit II - Array, Function and String
RahulTamkhane
 
PPTX
Python array
Arnab Chakraborty
 
PPTX
Taxonomy of Scala
shinolajla
 
PDF
Scientific Computing with Python - NumPy | WeiYuan
Wei-Yuan Chang
 
PDF
The Joy of SciPy
kammeyer
 
Introduction to numpy
Gaurav Aggarwal
 
Python NumPy Tutorial | NumPy Array | Edureka
Edureka!
 
arrays-120712074248-phpapp01
Abdul Samee
 
CSS Unit II - Array, Function and String
RahulTamkhane
 
Python array
Arnab Chakraborty
 
Taxonomy of Scala
shinolajla
 
Scientific Computing with Python - NumPy | WeiYuan
Wei-Yuan Chang
 
The Joy of SciPy
kammeyer
 

What's hot (19)

PPT
Functional Programming - Past, Present and Future
Pushkar Kulkarni
 
PDF
Scala Collections : Java 8 on Steroids
François Garillot
 
PPTX
Analysis of algorithms
iqbalphy1
 
PPT
Synapse india complain sharing info on chapter 8 operator overloading
SynapseindiaComplaints
 
PDF
Learning notes of r for python programmer (Temp1)
Chia-Chi Chang
 
PDF
Collections In Java
Binoj T E
 
PPTX
Introduction to PyTorch
Jun Young Park
 
PDF
Python3
Jiayun Zhou
 
ODP
Functions In Scala
Knoldus Inc.
 
PPTX
Arrays in Java
Abhilash Nair
 
PDF
Statistical inference for (Python) Data Analysis. An introduction.
Piotr Milanowski
 
PDF
01. haskell introduction
Sebastian Rettig
 
PPTX
Python for lab_folk
Anneke Batenburg
 
ODP
Type Parameterization
Knoldus Inc.
 
PPTX
Net (f#) array
DrRajeshreeKhande
 
PDF
Python programming : Arrays
Emertxe Information Technologies Pvt Ltd
 
PDF
Pandas Cheat Sheet
ACASH1011
 
ODP
Effective way to code in Scala
Knoldus Inc.
 
Functional Programming - Past, Present and Future
Pushkar Kulkarni
 
Scala Collections : Java 8 on Steroids
François Garillot
 
Analysis of algorithms
iqbalphy1
 
Synapse india complain sharing info on chapter 8 operator overloading
SynapseindiaComplaints
 
Learning notes of r for python programmer (Temp1)
Chia-Chi Chang
 
Collections In Java
Binoj T E
 
Introduction to PyTorch
Jun Young Park
 
Python3
Jiayun Zhou
 
Functions In Scala
Knoldus Inc.
 
Arrays in Java
Abhilash Nair
 
Statistical inference for (Python) Data Analysis. An introduction.
Piotr Milanowski
 
01. haskell introduction
Sebastian Rettig
 
Python for lab_folk
Anneke Batenburg
 
Type Parameterization
Knoldus Inc.
 
Net (f#) array
DrRajeshreeKhande
 
Python programming : Arrays
Emertxe Information Technologies Pvt Ltd
 
Pandas Cheat Sheet
ACASH1011
 
Effective way to code in Scala
Knoldus Inc.
 
Ad

Similar to CDAT - cdms numpy arrays - Introduction (20)

PPTX
numpydocococ34554367827839271966666.pptx
sankarhariharan2007
 
PPTX
L 5 Numpy final learning and Coding
Kirti Verma
 
PPT
CAP776Numpy.ppt
kdr52121
 
PPT
CAP776Numpy (2).ppt
ChhaviCoachingCenter
 
PPTX
lec08-numpy.pptx
lekha572836
 
PPT
Python crash course libraries numpy-1, panda.ppt
janaki raman
 
PPTX
NumPy.pptx
DrJasmineBeulahG
 
PPT
Introduction to Numpy Foundation Study GuideStudyGuide
elharriettm
 
PPTX
Chapter 5-Numpy-Pandas.pptx python programming
ssuser77162c
 
PPTX
Data structure and algorithm using java
Narayan Sau
 
PPTX
Data Analysis in Python-NumPy
Devashish Kumar
 
PDF
DSJ_Unit I & II.pdf
Arumugam90
 
PPTX
1.NumPy is a Python library used for wor
DrAtulZende
 
PDF
0-Slot18-19-20-ContiguousStorage.pdf
ssusere19c741
 
PPTX
UNIT-03_Numpy (1) python yeksodbbsisbsjsjsh
tony8553004135
 
PPTX
getting started with numpy and pandas.pptx
workvishalkumarmahat
 
PDF
Data Structure - Lecture 2 - Recursion Stack Queue.pdf
donotreply20
 
PDF
Queue ADT for data structure for computer
abinathsabi
 
PPTX
Mathemetics module
manikanta361
 
PPTX
NumPy.pptx
EN1036VivekSingh
 
numpydocococ34554367827839271966666.pptx
sankarhariharan2007
 
L 5 Numpy final learning and Coding
Kirti Verma
 
CAP776Numpy.ppt
kdr52121
 
CAP776Numpy (2).ppt
ChhaviCoachingCenter
 
lec08-numpy.pptx
lekha572836
 
Python crash course libraries numpy-1, panda.ppt
janaki raman
 
NumPy.pptx
DrJasmineBeulahG
 
Introduction to Numpy Foundation Study GuideStudyGuide
elharriettm
 
Chapter 5-Numpy-Pandas.pptx python programming
ssuser77162c
 
Data structure and algorithm using java
Narayan Sau
 
Data Analysis in Python-NumPy
Devashish Kumar
 
DSJ_Unit I & II.pdf
Arumugam90
 
1.NumPy is a Python library used for wor
DrAtulZende
 
0-Slot18-19-20-ContiguousStorage.pdf
ssusere19c741
 
UNIT-03_Numpy (1) python yeksodbbsisbsjsjsh
tony8553004135
 
getting started with numpy and pandas.pptx
workvishalkumarmahat
 
Data Structure - Lecture 2 - Recursion Stack Queue.pdf
donotreply20
 
Queue ADT for data structure for computer
abinathsabi
 
Mathemetics module
manikanta361
 
NumPy.pptx
EN1036VivekSingh
 
Ad

More from Arulalan T (20)

PDF
wgrib2
Arulalan T
 
PDF
Climate Data Operators (CDO)
Arulalan T
 
PDF
CDAT - graphics - vcs - xmgrace - Introduction
Arulalan T
 
PDF
CDAT - cdms2, maskes, cdscan, cdutil, genutil - Introduction
Arulalan T
 
PDF
Python an-intro-python-month-2013
Arulalan T
 
PDF
Python an-intro v2
Arulalan T
 
PDF
Thermohaline Circulation & Climate Change
Arulalan T
 
ODP
Python an-intro - odp
Arulalan T
 
ODT
Testing in-python-and-pytest-framework
Arulalan T
 
PDF
Pygrib documentation
Arulalan T
 
PDF
Lesson1 python an introduction
Arulalan T
 
PDF
Python An Intro
Arulalan T
 
PDF
Final review contour
Arulalan T
 
PDF
Contour Ilugc Demo Presentation
Arulalan T
 
PDF
Contour Ilugc Demo Presentation
Arulalan T
 
PDF
Edit/correct India Map In Cdat Documentation - With Edited World Map Data
Arulalan T
 
PDF
Nomography
Arulalan T
 
PDF
matplotlib-installatin-interactive-contour-example-guide
Arulalan T
 
PDF
"contour.py" module
Arulalan T
 
PDF
contour analysis and visulaization documetation -1
Arulalan T
 
wgrib2
Arulalan T
 
Climate Data Operators (CDO)
Arulalan T
 
CDAT - graphics - vcs - xmgrace - Introduction
Arulalan T
 
CDAT - cdms2, maskes, cdscan, cdutil, genutil - Introduction
Arulalan T
 
Python an-intro-python-month-2013
Arulalan T
 
Python an-intro v2
Arulalan T
 
Thermohaline Circulation & Climate Change
Arulalan T
 
Python an-intro - odp
Arulalan T
 
Testing in-python-and-pytest-framework
Arulalan T
 
Pygrib documentation
Arulalan T
 
Lesson1 python an introduction
Arulalan T
 
Python An Intro
Arulalan T
 
Final review contour
Arulalan T
 
Contour Ilugc Demo Presentation
Arulalan T
 
Contour Ilugc Demo Presentation
Arulalan T
 
Edit/correct India Map In Cdat Documentation - With Edited World Map Data
Arulalan T
 
Nomography
Arulalan T
 
matplotlib-installatin-interactive-contour-example-guide
Arulalan T
 
"contour.py" module
Arulalan T
 
contour analysis and visulaization documetation -1
Arulalan T
 

Recently uploaded (20)

PDF
Phylum Arthropoda: Characteristics and Classification, Entomology Lecture
Miraj Khan
 
PPTX
Measures_of_location_-_Averages_and__percentiles_by_DR SURYA K.pptx
Surya Ganesh
 
PDF
3.The-Rise-of-the-Marathas.pdfppt/pdf/8th class social science Exploring Soci...
Sandeep Swamy
 
PPTX
Dakar Framework Education For All- 2000(Act)
santoshmohalik1
 
PPTX
How to Manage Global Discount in Odoo 18 POS
Celine George
 
PDF
2.Reshaping-Indias-Political-Map.ppt/pdf/8th class social science Exploring S...
Sandeep Swamy
 
PDF
Review of Related Literature & Studies.pdf
Thelma Villaflores
 
PDF
Exploring-Forces 5.pdf/8th science curiosity/by sandeep swamy notes/ppt
Sandeep Swamy
 
PPTX
Odoo 18 Sales_ Managing Quotation Validity
Celine George
 
PDF
5.EXPLORING-FORCES-Detailed-Notes.pdf/8TH CLASS SCIENCE CURIOSITY
Sandeep Swamy
 
PPTX
vedic maths in python:unleasing ancient wisdom with modern code
mistrymuskan14
 
PPT
Python Programming Unit II Control Statements.ppt
CUO VEERANAN VEERANAN
 
PPTX
Care of patients with elImination deviation.pptx
AneetaSharma15
 
PPTX
An introduction to Dialogue writing.pptx
drsiddhantnagine
 
DOCX
SAROCES Action-Plan FOR ARAL PROGRAM IN DEPED
Levenmartlacuna1
 
PDF
Landforms and landscapes data surprise preview
jpinnuck
 
PDF
The Minister of Tourism, Culture and Creative Arts, Abla Dzifa Gomashie has e...
nservice241
 
PDF
7.Particulate-Nature-of-Matter.ppt/8th class science curiosity/by k sandeep s...
Sandeep Swamy
 
PPTX
PPTs-The Rise of Empiresghhhhhhhh (1).pptx
academysrusti114
 
PPTX
How to Manage Leads in Odoo 18 CRM - Odoo Slides
Celine George
 
Phylum Arthropoda: Characteristics and Classification, Entomology Lecture
Miraj Khan
 
Measures_of_location_-_Averages_and__percentiles_by_DR SURYA K.pptx
Surya Ganesh
 
3.The-Rise-of-the-Marathas.pdfppt/pdf/8th class social science Exploring Soci...
Sandeep Swamy
 
Dakar Framework Education For All- 2000(Act)
santoshmohalik1
 
How to Manage Global Discount in Odoo 18 POS
Celine George
 
2.Reshaping-Indias-Political-Map.ppt/pdf/8th class social science Exploring S...
Sandeep Swamy
 
Review of Related Literature & Studies.pdf
Thelma Villaflores
 
Exploring-Forces 5.pdf/8th science curiosity/by sandeep swamy notes/ppt
Sandeep Swamy
 
Odoo 18 Sales_ Managing Quotation Validity
Celine George
 
5.EXPLORING-FORCES-Detailed-Notes.pdf/8TH CLASS SCIENCE CURIOSITY
Sandeep Swamy
 
vedic maths in python:unleasing ancient wisdom with modern code
mistrymuskan14
 
Python Programming Unit II Control Statements.ppt
CUO VEERANAN VEERANAN
 
Care of patients with elImination deviation.pptx
AneetaSharma15
 
An introduction to Dialogue writing.pptx
drsiddhantnagine
 
SAROCES Action-Plan FOR ARAL PROGRAM IN DEPED
Levenmartlacuna1
 
Landforms and landscapes data surprise preview
jpinnuck
 
The Minister of Tourism, Culture and Creative Arts, Abla Dzifa Gomashie has e...
nservice241
 
7.Particulate-Nature-of-Matter.ppt/8th class science curiosity/by k sandeep s...
Sandeep Swamy
 
PPTs-The Rise of Empiresghhhhhhhh (1).pptx
academysrusti114
 
How to Manage Leads in Odoo 18 CRM - Odoo Slides
Celine George
 

CDAT - cdms numpy arrays - Introduction