Undefined function or variable 'fabs'

19 次查看(过去 30 天)
Hi,
I'm getting this error: "Undefined function or variable 'fabs'."
The code is:
for z=1:length(altura_raio_direto)
delta_h = altura_raio_direto(z) - (m * z + b);
raio_elipsoide = sqrt(...
(z * abs(dv - z) * lambda)/dv...
)
if (delta_h>0) | (delta_h<0 & fabs(delta_h)<0.6*raio_elipsoide)
LOS = 0;
disp('Is going to exit - NLOS');
break
end
end
Any ideia how this error occurs?
Thanks!

回答(1 个)

Bruno Luong
Bruno Luong 2020-8-29
编辑:Bruno Luong 2020-8-29
Replace
fabs(delta_h) < 0.6*raio_elipsoide
with
abs(delta_h) < 0.6*raio_elipsoide % or -delta_h < 0.6*raio_elipsoide
It seems someone translates a C code to MATLAB code without care.

类别

Help CenterFile Exchange 中查找有关 Software Development Tools 的更多信息

Community Treasure Hunt

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

Start Hunting!

Translated by