meijerG function in matlab
2 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
how to implement meijerG function in matlab??
0 commentaires
Réponse acceptée
Walter Roberson
le 3 Mai 2020
Modifié(e) : Walter Roberson
le 3 Mai 2020
4 commentaires
Walter Roberson
le 3 Mai 2020

A = vector of length n (2), a(1:n) -> a(1:2)
B = vector of length p-n (2-2), a(n+1:p) -> a(3:2) -> empty
C = vector of length m (1), b(1:1) -> b(1)
D = vector of length q-m (2-1), b(m+1:q) -> b(2:2) -> b(2)
With the entire vector a being [1 1], and the entire vector b being [1 1], then we get
A = a(1:2) = [1 1]
B = []
C = b(1) = [1]
D = b(2) = [1]
leading to the call
meijerg([1 1], [], [1], [1], z)
Plus de réponses (0)
Voir également
Catégories
En savoir plus sur Manage Products dans Help Center et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!