필터 지우기
필터 지우기

Symbolic plotting of Fourier integral

조회 수: 4 (최근 30일)
Shubham
Shubham 2021년 1월 30일
댓글: Star Strider 2021년 1월 30일
I want to plot M/P×a v/s (x/a) there are no values PS - The given equation is of bending Moment for an infinite beam

채택된 답변

Star Strider
Star Strider 2021년 1월 30일
If there are no values, then there is no plot, since plots require numbers.
If you have values, make the appropriate substitutions here:
P = 42; % Create Variable Value
a = 5; % Create Variable Value
M = @(x,P,a) P*a/pi*integral(@(alfa) alfa.*cos(alfa.*x./a) ./ (alfa.^3+1), 0, Inf, 'ArrayValued',1);
x = linspace(0, 100);
figure
plot(x/a, M(x,P,a)./(P*a))
grid
to get the result you want.
  댓글 수: 2
Shubham
Shubham 2021년 1월 30일
Thanks a lot very helpful .
Star Strider
Star Strider 2021년 1월 30일
As always, my pleasure!

댓글을 달려면 로그인하십시오.

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 2-D and 3-D Plots에 대해 자세히 알아보기

제품

Community Treasure Hunt

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

Start Hunting!

Translated by