Matlab中syms构建函数后用fsolve求解
来源:学生作业帮 编辑:神马作文网作业帮 分类:综合作业 时间:2024/11/10 17:56:09
Matlab中syms构建函数后用fsolve求解
例如:
syms x
y=x^2-1;
fsolve(y,-2)
结果报错:
Error using ==> lsqfcnchk at 111
If FUN is a MATLAB object,it must have an feval method.
Error in ==> fsolve at 184
funfcn = lsqfcnchk(FUN,'fsolve',length(varargin),funValCheck,gradflag);
请问怎么解决
不用function_handle(@)的情况下 怎么解决
例如:
syms x
y=x^2-1;
fsolve(y,-2)
结果报错:
Error using ==> lsqfcnchk at 111
If FUN is a MATLAB object,it must have an feval method.
Error in ==> fsolve at 184
funfcn = lsqfcnchk(FUN,'fsolve',length(varargin),funValCheck,gradflag);
请问怎么解决
不用function_handle(@)的情况下 怎么解决
思路有点混乱,syms x;y=x^2-1;fsolve(y,-2);你算的是x=2,y=(-2)^2-1还是:
-2=x^2-1 求x.
如果是前者使用subs
如果是后者,直接写到一起
再问: fsolve接受string,改成这样就可以了: syms x y=x^2-1; fsolve(char(y),-2)
-2=x^2-1 求x.
如果是前者使用subs
如果是后者,直接写到一起
再问: fsolve接受string,改成这样就可以了: syms x y=x^2-1; fsolve(char(y),-2)
Matlab中syms构建函数后用fsolve求解
MATLAB求解非线性方程组用fsolve函数求解
matlab用fsolve求解非线性方程组,无法求解……
matlab中syms怎么用?
MATLAB 中syms
关于Matlab求解非线性隐式方程组的求解,利用fsolve,solve,或ezplot等自带函数求解,
求Matlab大神!我用fsolve函数求解六元非线性方程组,但是方程组中的系数是通过其它函数求出,然后通过全
matlab 中fsolve求解非线性方程组可以给定解的区间么
求Matlab高手帮我解答!我用fsolve函数求解非线性方程组,但是方程组中的系数我是通过另一个程序求出的,
MATLAB中fsolve解非线性方程问题
matlab中syms什么意思?
Matlab问题:请教fsolve求解非线性方程问题