matlab看不懂.function y=f(x) y=1./x+2*sin((2*x).^0.5);end >> fo
来源:学生作业帮 编辑:作业帮 分类:综合作业 时间:2024/11/09 03:24:47
matlab看不懂.
function y=f(x)
y=1./x+2*sin((2*x).^0.5);
end
>> format long
>> x=3.3;h=0.1;
g=(f(x+h)-2*f(x)+f(x-h))/(h^2)
g =
-0.009399348448680
>> x=3.3;h=0.001;
g=(f(x+h)-2*f(x)+f(x-h))/(h^2)
g =
-0.009377437715230
>> x=3.3;h=0.001;
g=(f(x+h)-2*f(x)+f(x-h))/(h^2)
g =
-0.009377437715230
function y=f(x)
y=1./x+2*sin((2*x).^0.5);
end
>> format long
>> x=3.3;h=0.1;
g=(f(x+h)-2*f(x)+f(x-h))/(h^2)
g =
-0.009399348448680
>> x=3.3;h=0.001;
g=(f(x+h)-2*f(x)+f(x-h))/(h^2)
g =
-0.009377437715230
>> x=3.3;h=0.001;
g=(f(x+h)-2*f(x)+f(x-h))/(h^2)
g =
-0.009377437715230
代码定义了一个函数:f(x) =1/x + 2*sin(√(2x))
里面的下标“.” 表示当x为数组时,预算是对数组成员分别进行的.
下面f(x+h)相当于把3.3001代入上面的函数,f(x) f(x-h)也一样.
format long 表示改变了精度.
里面的下标“.” 表示当x为数组时,预算是对数组成员分别进行的.
下面f(x+h)相当于把3.3001代入上面的函数,f(x) f(x-h)也一样.
format long 表示改变了精度.
matlab画图 我定义的函数 function y = F( x) y=exp(-x)-x; end
if the function f satisfies the equation f(x+y)=f(x)+f(y) fo
matlab中如何用function建立一个y=f(x)函数?直接function y=f(x) y=x.^2+3*x+
matlab创建函数function f(m)t=0:0.01:2*pi;x=m.*sin(t);y=m.*cos(t)
matlab中语句f=@(x,y)exp(-x.^2/3).*sin(x.^2+2*y)中@(x,
MATLAB新手求助比如我定义了一个function y=f(x)y=(x-120)*sqrt((x-120).^2+1
matlab画y=sin(x)+sin(2*x)+...+sin(20*x)的图像
MATLAB中function f=fun(x,y),“f=”代表什么意义啊?
Matlab编程问题 cos(x*y)*cos(x*(1-y))-0.5x*sin(x*y)*sin(x*(1-y))=
MATLAB画图,y=sin(x)*(cos(x)-1)/((2*sin(x.^2)+4*cos(x)).^0.5)-(
matlab中,怎样用function定义带参数的方程? 比如 function y=myfun(x) y=x(1)+x
matlab 原函数为function y=mytest(x) x=x+5;y=x*2;能正确运行,但是x只是在函数变量