MATLAB y=(x.*sinx)./(1+(cosx.^2));
问题描述:
MATLAB y=(x.*sinx)./(1+(cosx.^2));
答
在matlab中,函数应该都要加括号的,应改为:
y=(x.*sin(x))./(1+(cos(x).^2));
答
y=(x.*sin(x) )./(1+(cos(x).^2));
# 少了2对()