How do I multiply a given function handle with the independent variable?
조회 수: 3 (최근 30일)
표시 이전 댓글
I have pre-defined n number of function handles f_{i} which are functions of t for i = 1 to n. How do I define a new function g_{i} = t.f_{i} and then evaluate the integral of each g_{i} from t=0 to 1?
댓글 수: 0
채택된 답변
Steven Lord
2023년 4월 3일
f = @sin;
g = @(t) t.*f(t);
format longg
[3*sin(3); g(3)] % Spot check by evaluating the function at t = 3
Now you can use g like any other function handle in functions like integral.
numericAnswer = integral(g, 0, 2*pi)
syms x
symbolicAnswer = int(x.*sin(x), 0, 2*pi) % or
symbolicAnswer = int(g(x), 0, 2*pi)
[numericAnswer; double(symbolicAnswer)]
댓글 수: 0
추가 답변 (1개)
참고 항목
카테고리
Help Center 및 File Exchange에서 Calculus에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!