w3resource

NumPy: Compute the covariance matrix of two given arrays

NumPy Statistics: Exercise-8 with Solution

Write a NumPy program to compute the covariance matrix of two given arrays.

Sample Solution:

Python Code:

# Importing the NumPy library
import numpy as np

# Creating an array 'x' containing elements [0, 1, 2]
x = np.array([0, 1, 2])

# Creating an array 'y' containing elements [2, 1, 0]
y = np.array([2, 1, 0])

# Displaying the original array 'x'
print("\nOriginal array1:")
print(x)

# Displaying the original array 'y'
print("\nOriginal array1:")
print(y)

# Calculating the covariance matrix of arrays 'x' and 'y' using np.cov()
print("\nCovariance matrix of the said arrays:\n", np.cov(x, y)) 

Sample Output:

Original array1:
[0 1 2]

Original array1:
[2 1 0]

Covariance matrix of the said arrays:
 [[ 1. -1.]
 [-1.  1.]]

Explanation:

In the above exercise –

x = np.array([0, 1, 2]): This code creates a NumPy array x containing the values 0, 1, and 2.

y = np.array([2, 1, 0]): This code creates a NumPy array y containing the values 2, 1, and 0. print(np.cov(x, y)): This code calculates the covariance matrix of the arrays x and y using the np.cov() function, and then prints it to the console.

Python-Numpy Code Editor:

Have another way to solve this solution? Contribute your code (and comments) through Disqus.

Previous: Write a NumPy program to compute the mean, standard deviation, and variance of a given array along the second axis.
Next: Write a NumPy program to compute cross-correlation of two given arrays.

What is the difficulty level of this exercise?

Test your Programming skills with w3resource's quiz.



Become a Patron!

Follow us on Facebook and Twitter for latest update.

It will be nice if you may share this link in any developer community or anywhere else, from where other developers may find this content. Thanks.

https://198.211.115.131/python-exercises/numpy/python-numpy-stat-exercise-8.php