VOOZH about

URL: https://www.geeksforgeeks.org/python/sympy-stats-multivariatet-function-in-python/

⇱ sympy.stats.MultivariateT() function in Python - GeeksforGeeks


  • Courses
  • Tutorials
  • Interview Prep

sympy.stats.MultivariateT() function in Python

Last Updated : 18 Aug, 2020

With the help of sympy.stats.MultivariateT() method, we can create a joint random variable with multivariate T-distribution.

Syntax: sympy.stats.MultivariateT(syms, mu, sigma, v)

Parameters:
 syms: the symbol for identifying the random variable
 mu: a matrix representing the location vector
 sigma: The shape matrix for the distribution
 v: a real number

Returns: a joint random variable with multivariate T-distribution.

Example #1 :

Output :

 2 
----
9*pi

Example #2 :

Output :

 4 ____ ___ 
2*\/ 11 *\/ 2 *Gamma(7/4)
-------------------------
 3/2 
 121*pi *Gamma(1/4) 
Comment
Article Tags: