d=[1:3035:5:70];RSSI=[-35-39-42-44-47-47-49-50-51-52...-53-55-58-59-57-60-60-61-62-62...-63-63-64-65-65-65-67-66-68-68...-70-71-72-73-75-75-76-76];p=polyfit(log(d),RSSI,1);n=-p(1)/10;A=p(2);plot(d,RSSI,'o');holdon;plot(d,-10*n*log(d)+A,'r');holdoff;legend('原始数据','拟合曲线');title(['n='num2str(n)',A='num2str(A)]);