Search
 
SCRIPT & CODE EXAMPLE
 

PYTHON

np.multiply

>>> x1 = np.arange(9.0).reshape((3, 3))
>>> x2 = np.arange(3.0)
>>> np.multiply(x1, x2)
array([[  0.,   1.,   4.],
       [  0.,   4.,  10.],
       [  0.,   7.,  16.]])
Comment

PREVIOUS NEXT
Code Example
Python :: selenium webdriver scroll down python 
Python :: numpy rolling average 
Python :: mediana python 
Python :: read a file python 
Python :: python append value to dictionary list 
Python :: how to for loop for amount of characters in string python 
Python :: echo $pythonpath ubuntu set default 
Python :: Python numpy.broadcast_to() Function Example 
Python :: dataframe to dictionary using index as key 
Python :: change dataframe to list 
Python :: dir() in python 
Python :: python integer to string 
Python :: Iterate through characters of a string in python 
Python :: Fast api importing optional 
Python :: how to view all attributes and methods of an object python 
Python :: python array scalar multiplication 
Python :: python put console window on top 
Python :: raku fibonacci 
Python :: how to make dictionary in python 
Python :: xml to json in python 
Python :: enumerate string pythonm 
Python :: how to get all possible combinations in python 
Python :: python is dict 
Python :: numpy divide with exception 
Python :: move file python os 
Python :: python create array 
Python :: how to change data type from int to float in dataframe 
Python :: python remove many items via index at oncefrom a list? 
Python :: python join list ignore none and empty string 
Python :: load pt file 
ADD CONTENT
Topic
Content
Source link
Name
1+9 =