필터 지우기
필터 지우기

not able to solve the integration function

조회 수: 2 (최근 30일)
Kundan Prasad
Kundan Prasad 2021년 12월 16일
댓글: Kundan Prasad 2021년 12월 16일
Dear Sir/Madam,
I am not able to solve the given integration function. The screenshot of given is attached and the code is given below
Thank you
for j=1:100
x(j)=linspace(0,0.025,101);
R(j)=linspace(0,0.4,101);
f=0.025;
syms x
b(j)= int(R(j)-sqrt(R(j).^2-x(j).^2),0, f);
c(j)=sqrt((1/f)*b(j));
end
  댓글 수: 6
Kundan Prasad
Kundan Prasad 2021년 12월 16일
yes sir
for given R=0.4, f=0 & 0.025, x=0:0.001:0.025,
what will be the value of σ for each x
Kundan Prasad
Kundan Prasad 2021년 12월 16일
here f=0.025

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

답변 (2개)

Jan
Jan 2021년 12월 16일
This cannot work:
x(j) = linspace(0,0.025,101);
On the left is a scalar and on the right a vector with 101 elements.
Seeing only the invalid code does not clarify its intention. What is the purpose of the loop?
  댓글 수: 2
Kundan Prasad
Kundan Prasad 2021년 12월 16일
what need to be change in code. Please clarify??
Thank you
Jan
Jan 2021년 12월 16일
I cannot fix the code such that it does, what you want, as long as you do not clarify what you want to achieve. I ask again: What is the purpose of the loop? I'd expect RT to be a constand and x to be a symbolic variable. Then there is no need for a loop.

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


Tesfaye Girma
Tesfaye Girma 2021년 12월 16일
indeces should have to match in both side and be compatable as well

Community Treasure Hunt

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

Start Hunting!

Translated by