express function as function handles
显示 更早的评论
How can i express this function as a function handle @dints
function f = dint2(x, y)
tmp=[];
for ii=1:1:length(x)
tmp(ii)=x(ii) * y^2 *density(x(ii),y);
end
f=tmp;
end
1 个评论
Walter Roberson
2019-4-16
It would be more efficient to initialize
tmp = zeros(1, length(x));
回答(1 个)
per isakson
2019-4-16
编辑:per isakson
2019-4-16
类别
在 帮助中心 和 File Exchange 中查找有关 Mathematics 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!