필터 지우기
필터 지우기

meijerG function in matlab

조회 수: 6 (최근 30일)
kunal
kunal 2020년 5월 3일
댓글: kunal 2020년 5월 4일
how to implement meijerG function in matlab??

채택된 답변

Walter Roberson
Walter Roberson 2020년 5월 3일
편집: Walter Roberson 2020년 5월 3일
  댓글 수: 4
Walter Roberson
Walter Roberson 2020년 5월 3일
is m=1, n=2, p=2, q=2
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)
kunal
kunal 2020년 5월 4일
Thank you so much !

댓글을 달려면 로그인하십시오.

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 MATLAB에 대해 자세히 알아보기

태그

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by