我什么时候应该使用函数句柄或符号函数?

时间:2019-03-29 18:33:02

标签: matlab function integration handle symbolic-math

我正在研究热传导的偏导数方程。有3个变量,y,时间和n。我必须集成

之类的功能
    f = sin(n*pi*y)dy on y between [0 L] 

并计算

的序列和
    f_Integration*e^(n*pi*t)*sin(n*pi*y) with n [1..Inf]. 

对于每个步骤,我都尝试使用函数句柄:

    f = @(y,n)... 

或symfun:

    f(y,n) = ...

我设置了:

     syms n y t;

我与int集成:

    int(ftoIntegrate(y,n), y , 0, L)

我用symsum计算总和:

    symsum(ftoSum,n,1,Inf)

如果我使用plot或fplot,我什么也没观察到。我应该使用向量吗?我不确定哪种方法适合我的工作。

0 个答案:

没有答案