필터 지우기
필터 지우기

how do I integrate a pre-recorded function?

조회 수: 1 (최근 30일)
Pavel Kuzmitsky
Pavel Kuzmitsky 2021년 4월 24일
답변: Star Strider 2021년 4월 24일
I tried to write it as follows, but it gives an error
syms r theta
p1 = r.* cos(theta);
polarfun = @(r,theta) p1;
q = integral2(polarfun,0,1,0,2*pi)
please tell me how to do this correctly?

채택된 답변

Star Strider
Star Strider 2021년 4월 24일
Try this —
syms r theta
p1 = r.* cos(theta);
polarfun(r,theta) = p1
polarfun(r, theta) = 
polarfcn = matlabFunction(polarfun) % Slightly Renamed To Avoid Over-Writing Original
polarfcn = function_handle with value:
@(r,theta)r.*cos(theta)
q = integral2(polarfcn,0,1,0,2*pi)
q = 1.5446e-14
.

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Calculus에 대해 자세히 알아보기

제품


릴리스

R2020b

Community Treasure Hunt

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

Start Hunting!

Translated by