資源簡介
MATLAB仿真程序,使用解析法和牛頓迭代法,在已知時延信息的基礎上,對目標定位。
內涵符號迭代和等值線繪圖等角復雜代碼

代碼片段和文件信息
%牛頓迭代法解非線性方程組
%輸入參數:迭代初值,迭代方程,精度要求
function?[h]=Newton(start_newtonF_newtonp_newton)
F_temp=start_newton;
temp=[0;0;0];???
while?sum(abs(temp-F_temp))>p_newton
temp=F_temp;????
F_temp=F_temp-subs(F_newton{‘x‘‘y‘‘z‘}{F_temp(1)F_temp(2)F_temp(3)});
end
h=F_temp;
?屬性????????????大小?????日期????時間???名稱
-----------?---------??----------?-----??----
?????文件????????312??2010-09-09?23:17??Newton.m
?????文件???????1607??2010-10-04?17:52??TDOA1_Newton.m
?????文件???????2975??2010-10-08?07:50??TDOA2.m
?????文件???????3298??2010-10-08?22:19??TDOA_peaks.m
-----------?---------??----------?-----??----
?????????????????8192????????????????????4
評論
共有 條評論