how do i solve Error using CheckNetworkData (line 39) H_PARAMS must be numeric. Error in h2s (line 17) m = CheckNetworkData(h_params, 2, 'H_PARAMS');
2 次查看(过去 30 天)
显示 更早的评论
how do i solve this error?
when using h2s function
i tried uing:syms R1 R2 Av h11 h12 h21 h22
h11 = 1;
h12=10;
h21=1;
h22=2;
h_params = [h11,h12; h21,h22];
s_params = h2s(h_params)
however this is te error i received,
please help thank you in advance
H_PARAMS must be numeric.
m = CheckNetworkData(h_params, 2, 'H_PARAMS');
0 个评论
回答(1 个)
Harikrishnan Balachandran Nair
2022-1-25
Hi grace,
The 'h2s' function expects the 'H_PARAMS' to be of numeric Type. The error that you have mentioned in the question arises when the 'H_PARAMS' passed as arguments are not of numeric type.
You can use the 'isnumeric' in Matlab function to see if the provided 'H_PARAMS' are of numeric type, and make changes accordingly.
Hope this helps!
0 个评论
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Startup and Shutdown 的更多信息
产品
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!