필터 지우기
필터 지우기

Normalizing Path Loss Model to Test Data

조회 수: 3 (최근 30일)
Robyn Seery
Robyn Seery 2021년 4월 1일
댓글: Mathieu NOE 2021년 4월 6일
Looking for advice on methods of normalizing data. I have collected network level data and calculated the signal loss ('LOSS' in code below, measured in dB). I would like to compare this data to the free space path loss propagation model, as calculated in the code. To do this, I have tried to normalise the data between 0 and 1, however I am not getting the results I expected when I do this.
% Distance and path loss from test data
DIST = data.DIST;
LOSS = data.LOSS;
% distance vector
d = DIST;
% frequency
f = 1800e6;
% Calculate free space path loss model
FreeSpaceLoss = 20*log10(((4*pi*d*f)/3e8).^2);
% Normalise model
freeSpaceNorm = abs(FreeSpaceLoss)./max(abs(FreeSpaceLoss));
% Normalise test data
dataNorm = abs(LOSS)./max(abs(LOSS));
% Plotting data over normalised models
figure, hold on
plot(DIST, freeSpaceNorm, 'LineWidth',1.5)
plot(DIST, dataNorm, '.', 'MarkerSize', 7)
xlabel('Distance (m)')
ylabel('Loss (dB)')
title('PL Models vs Data')
legend('fspl', 'test data')
hold off;
I get the resulting plot, but the path loss model does not start at zero. I may be missing something small, or misunderstanding why this is happening - just looking for any suggestions on the best way to compare the two datasets.
Thanks in Advance.
  댓글 수: 3
Robyn Seery
Robyn Seery 2021년 4월 2일
Okay I see that now, thank you.
So would you recommend I plot bothe data sets in mWs to compare their values? I need them to have the same starting points to conduct corellation analysis, hence my attempt at normalizing them!
Open to all best approaches to achieve a good method of comparison.
Mathieu NOE
Mathieu NOE 2021년 4월 6일
hello
whatever the units or the scaling , it has to be coherent between measurements and theory...
now remember to remove zero valued data if you intend to use log scaling

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

답변 (0개)

카테고리

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

Community Treasure Hunt

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

Start Hunting!

Translated by