[问题] 建立function求积分

楼主: hbkhhhdx2006 (比格踢)   2014-12-10 02:12:09
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'.
想请问大大我的程式码问题出在哪
作者: winnie4952 (WinNie BeAr )   2014-12-12 16:34:00
onetwothree(@(x,k) x.^2*sin(k),1)(function里) g=integral(@(x)f(x,k),-X,X)答案不知道对不对 有值就是了

Links booklink

Contact Us: admin [ a t ] ucptt.com