神经网络确定模型参数?

时间:2014-11-29 08:46:12

标签: matlab neural-network

我试图为具有5个参数的函数拟合曲线?这是否可以在matlab中使用神经网络?

%Program Code
a=50;

xa=230;

h=65;

theta=103*pi/180;%dip

k=92;

for xi=0:10:500

    n=((xi-xa)-a*cos(theta))^2+(h-a*sin(theta))^2;

    d=((xi-xa)+a*cos(theta))^2+(h+a*sin(theta))^2

    v=k*log(n/d);


    figure(1)

    plot(xi,v,'b.')

    hold on

end

我的目标是将此功能与观察到的数据相匹配,我必须得到如图所示的结果? enter image description here

0 个答案:

没有答案