Matlab turns scalar parameter into array when numerically integrating
2 次查看(过去 30 天)
显示 更早的评论
When I numerically integrate a function, for example:
function [ y ] = funci(x)
z = [1 ; 2 ; x];
A = diag(z);
...
end
by writing
integral(@(x)funci(x),0,2)
then the integration will turn x into an array with values from 0 to 2. This doesn't matter for simple integrations but in this case, it causes an error in the second line of the function (the one starting with "z="). Any solutions? I have been stuck on this for the last hours :/ cheers
0 个评论
回答(1 个)
Youssef Khmou
2013-3-20
hi Fabian
I think the error( besied i do not own the "integral" function) is that your function returns a matrix , but integral takes an input as one dimensional function then if your function returns 2D data, you need to use other function such as double integral or dblquad,..or you have to map your function from 2D to 1D .
Take this as proposition , not definite answer .
cordially
另请参阅
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!