我正在尝试在 MATLAB 中生成 .bmp 图形,但无法将函数相加。我正在设计我的函数,使得给定任意一组输入,我的函数将添加任意数量的函数并输出一个函数句柄。输入是我的一般函数的系数,因此我可以指定任意数量的函数(仅因系数而异),然后将它们一起添加到函数句柄中。我尝试做的是将每个函数创建为字符串,然后将它们连接起来,然后将它们写为函数句柄。主要问题是因为 x 和 y 没有定义(因为我正在尝试创建函数句柄)MATLAB 无法定期添加它们。我目前的尝试:
function HGHG = anyHGadd(multi) %my array of inputs
m=length(multi);
for k=3:3:m;
m1=multi(k-2); %these three are the coefficients that I'd like to specify
n1=multi(k-1);
w1=multi(k);
HGarrm1=hermite(m1); %these generate arrays
HGarrn1=hermite(n1);
arrm1=[length(HGarrm1)-1:-1:0];%these generate arrays with the same length
arrn1=[length(HGarrn1)-1:-1:0];%the function below is the general form of my equation
t{k/3}=num2str(((sum(((sqrt(2)*x/w1).^arrm1).*HGarrm1))*(sum(((sqrt(2)*y/w1).^arrn1).*HGarrn1))*exp(-(x^2+y^2)/(w1^2))));
end
a=cell2mat(t(1:length(t)));
str2func(x,y)(a);
任何帮助将非常感激。我在这里没有看到太多关于此的内容,我什至不确定这是否完全有可能。如果我的问题不清楚,请说出来,我会再试一次。
编辑:倒数第四行不应产生数字,因为未定义 x 和 y。它们不可能是因为我需要将它们保留为我的函数句柄的一部分。至于我的代码的精简版本,希望这能说明问题:
function HGHG = anyHGadd(multi) %my array of inputs
m=length(multi);
for k=3:3:m;
m1=multi(k-2); %these three are the coefficients that I'd like to specify
n1=multi(k-1);
w1=multi(k);
t{k/3}=num2str(genericfunction(x,y,n1,m1,n1,w1); %where x and y are unspecified
end
a=cell2mat(t(1:length(t)));
str2func(x,y)(a);
编辑我希望这会输出一个函数句柄,它是我的任意数量的函数的总和。但是,我不确定使用字符串是否是最好的方法。