How can I correctly implement this Meijer G-function in MATLAB for the given equation with specific parameters ?
9 次查看(过去 30 天)
显示 更早的评论
![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/1818879/image.png)
I'm new to matlab and I'am trying to implement the above Meijer-G function but I'm not able to get the appropriate answer as per the research paper. Below is my Code, please help me for any correction.
mg_a = -y1 / 4;
mg_b = -y1 / 4 + 1;
mg_c = [y2 / 4, (y2 + 2) / 4];
mg_d = [-y2 / 4, (-y2 + 2) / 4, -y1 / 4, -y1 / 4];
G_function = meijerG(mg_a, mg_b, mg_c, mg_d, mg_z);
0 个评论
采纳的回答
更多回答(0 个)
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 FPGA, ASIC, and SoC Development 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!