曲线拟合的Matlab命令a=lsqcurvefit(fun,a0,x,y)中fun代表的是( )
举一反三
- The MATLAB function [a,Jm] = lsqcurvefit(fun,a0,x,y, opts), fun is the MATLAB description to the prototype function, which functions can be used as prototype functions.( ) A: M-function B: anonymous function C: inline function D: not sure
- 在MATLAB/Octave函数lsqcurvefit(fun,c0,x,y)中,第3、4个参数x,y用于表示 A: 系统求得的拟合系数 B: 已知的测量数据 C: 拟合函数fun中所包含参数的初始值 D: 其它选项都不对
- 下列函数声明中,错误的是________ A: void fun(int x=0,int y=0); B: void fun(int x,int y=0); C: void fun(int x=0,int y); D: void fun(int x,int y);
- 下列函数原型声明中错误的是____。 A: void Fun(int x=0,int y=0); B: void Fun(int x,int y); C: void Fun(int x,int y=0); D: void Fun(int x=0,int y);
- 非线性拟合代码x = lsqcurvefit('fun',x0,xdata,ydata) 中xdata和ydata是满足关系ydata=fun(x, xdata)的已知数据点,x为参数向量,x0为迭代初值