Just taking the input from BrenBarn and Warren Weckesser to provide a code snippet which should run (by converting your strings to float):
a = map(lambda x: float(x),a) b = map(lambda x: float(x),b) np.dot(a,b.T)
or simpler as suggested by @JLT
a = map(float,a) b = map(float,b) np.dot(a,b.T)
But as Warren Weckesser already said, you should check the types of the array, most likely one already contains floats
Related Posts:
- ValueError: setting an array element with a sequence
- Numpy ValueError: setting an array element with a sequence. This message may appear without the existing of a sequence?
- numpy: Invalid value encountered in true_divide
- How do I create an empty array/matrix in NumPy?
- numpy matrix vector multiplication
- Convert pandas dataframe to NumPy array
- size of NumPy array
- ValueError: all the input arrays must have same number of dimensions
- ValueError: setting an array element with a sequence
- Using Numpy Vectorize on Functions that Return Vectors
- Is there a NumPy function to return the first index of something in an array?
- Numpy/Python Array Value error
- initialize a numpy array
- load csv into 2D matrix with numpy for plotting
- How to access the ith column of a NumPy multidimensional array?
- Dump a NumPy array into a csv file
- Python: find position of element in array
- numpy with python: convert 3d array to 2d
- Python: slicing a multi-dimensional array
- How to remove specific elements in a numpy array
- Add single element to array in numpy
- How to normalize a 2-dimensional numpy array in python less verbose?
- Make list of arrays in python
- Understanding NumPy’s einsum
- How to fix “TypeError: len() of unsized object”
- TypeError: Invalid dimensions for image data when plotting array with imshow()
- How to get the unit vector from a numpy array
- numpy-equivalent of list.pop?
- Using numpy to build an array of all combinations of two arrays
- Efficiently sorting a numpy array in descending order?
- How to plot an array in python?
- TypeError: only integer arrays with one element can be converted to an index 3
- How to create a numpy array of all True or all False?
- How to create a numpy array of lists?
- Removing nan values from an array
- Root mean square of a function in python
- What are the differences between numpy arrays and matrices? Which one should I use?
- Numpy – add row to array
- Is there any numpy group by function?
- Mean Squared Error in Numpy?
- How to normalize a NumPy array to within a certain range?
- numpy array concatenation error: 0-d arrays can’t be concatenated
- Convert a 1D array to a 2D array in numpy
- inverting image in Python with OpenCV
- How to print the full NumPy array, without truncation?
- Sorting arrays in NumPy by column
- ImportError: DLL load failed: The specified module could not be found
- TypeError: only size-1 arrays can be converted to Python scalars (matplotlib)
- How to fix ‘Object arrays cannot be loaded when allow_pickle=False’ for imdb.load_data() function?
- ValueError: Unknown label type: ‘continuous’
- TypeError: unhashable type: ‘numpy.ndarray’
- data type not understood
- Plotting a 2D heatmap with Matplotlib
- What does numpy.random.seed(0) do?
- What does the c underscore expression `c_` do exactly?
- ImportError: Missing required dependencies [‘numpy’]
- Error: all the input array dimensions except for the concatenation axis must match exactly
- How to find all occurrences of an element in a list
- TypeError: ‘numpy.float64’ object is not callable
- TypeError: ‘numpy.float64’ object is not callable
- Convert a tensor to numpy array in Tensorflow?
- ‘DataFrame’ object has no attribute ‘sort’
- filename.whl is not a supported wheel on this platform
- TypeError: ‘numpy.float64’ object is not callable?
- Convert a tensor to numpy array in Tensorflow?
- How to normalize a NumPy array to a unit vector?
- What is dtype(‘O’), in pandas?
- How can I upgrade NumPy?
- How can the Euclidean distance be calculated with NumPy?
- How to get element-wise matrix multiplication (Hadamard product) in numpy?
- What is dtype(‘O’), in pandas?
- ValueError: could not broadcast input array from shape (224,224,3) into shape (224,224)
- Overflow Error in Python’s numpy.exp function
- ValueError: ‘object too deep for desired array’
- Purpose of `numpy.log1p( )`?
- How to take column-slices of dataframe in pandas
- Pytorch tensor to numpy array
- ‘numpy.float64’ object is not iterable
- Normalize data in pandas
- Can’t broadcast input array from shape (3,1) into shape (3,)
- Python: Write array values into file
- deleting rows in numpy array
- How can I remove Nan from list Python/NumPy
- Python Array Rotation
- How can I create an array/list of dictionaries in python?
- Numpy extract submatrix
- Can’t update to numpy 1.13 with anaconda?
- Matplotlib: TypeError: can’t multiply sequence by non-int of type ‘numpy.float64’
- Numpy, multiply array with scalar
- Python 3: Multiply a vector by a matrix without NumPy
- How to add a new row to an empty numpy array
- Is there a head and tail method for Numpy array?
- Difference between data type ‘datetime64[ns]’ and ‘
- Merging two DataFrames
- How is Python’s List Implemented?
- Transposing a 1D NumPy array
- numpy.float64 object is not iterable…but I’m NOT trying to
- vectorize conditional assignment in pandas dataframe
- Python OpenCV2 (cv2) wrapper to get image size?
- Shuffle an array with python, randomize array item order with python