multiplication of functions integration problem

5 ビュー (過去 30 日間)
fima v
fima v 2020 年 5 月 7 日
編集済み: fima v 2020 年 5 月 11 日
Hello,i have two functions "fun" and "coef_fun"
"coef_fun" was created with interpolation of the attached CSV and it looks like in the photo bellow.
I have integrated fun over some interval ,and i got some numeric result.
When i tried to integrate the multiplication of fun and coeff_fun (in order to see the reduction the the numeric result)
It gives me an error "Undefined operator '*' for input arguments of type 'function_handle'"
i have attached my code.
Where did i go wrong in integrating multiplication of functions?
Thanks.
%Default Dataset_new file
data = load('Default Dataset4.csv');
x = data(:,1);
y = data(:,2);
%plot(x,y);
data_x1=x*0.000001; %transform to micron
[data_k, index] = unique(data_x1);

採用された回答

ChrizzzlP
ChrizzzlP 2020 年 5 月 7 日
mult_fun needs to be defined as a function too. simple example below:
fun = @(x)x+3;
coef_fun = @(x) 5*x+9;
multiplication_func = @(x) fun(x)*coef_fun(x);
multiplication_func(2)
  3 件のコメント
fima v
fima v 2020 年 5 月 7 日
編集済み: fima v 2020 年 5 月 11 日
Hello Steven when i did the "fun" ONLY integration,fun_integral results in 43
But when i integrate the element wise multiplication you suggested( which is adding a filter and it should reduce the integral result)instead i get NAN in the mult_integral.
it said "Warning: Infinite or Not-a-Number value encountered"
Why my integral exploded?
What could be done?
Thanks
data = load('Default Dataset4.csv');
x = data(:,1);
y = data(:,2);
%plot(x,y);
data_x1=x*0.000001; %transform to micron
[data_k, index] = unique(data_x1);
fima v
fima v 2020 年 5 月 7 日
編集済み: fima v 2020 年 5 月 7 日
Hello I was able to integrate the Purple plot over the range and it gave me 43
Why when i integrate the smaller green plot My integral explodes?
Thanks.

サインインしてコメントする。

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeInterpolation についてさらに検索

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by