Create a function that can do the following things:
Calculate the following integration :
g(k) = ∫f(x)*sin(k*x) dx, where f(x) is any mathematical function, and
the integration range is from -X to X
k=[0: 2*pi/X : 1/dx]
以上是题目
f(x)和上下线都由使用者输入
然后下面是我打的程式码
function onetwothree(f,X)
dx = 1e-6;
for k=0 : 2*pi/X : 1/dx
g = integral(f*sin(k),-X,X);
fprintf('g(%d)=%d\n',k,g);
end
然后去测试 onetwothree(@(x)x^2,1)
结果跑出来这样
Undefined function 'mtimes' for input arguments of type 'function_handle'.
想请问大大我的程式码问题出在哪