How to write matlab code for this equation?

조회 수: 2 (최근 30일)
Anushka
Anushka 2015년 3월 15일
답변: shabana javed 2017년 11월 19일
How to write matlab code for the equation given below

채택된 답변

Image Analyst
Image Analyst 2015년 3월 15일
How about:
subarray = f(y1:yb, x1:xb);
Qs = sum(subarray(:)) - 0.5 * b^2;

추가 답변 (2개)

christopher bernard
christopher bernard 2016년 3월 6일
How to write matlab code for this equation
ASinkc xe-jβz
ASinkc de-h(x-d)e-jβz
  댓글 수: 2
Walter Roberson
Walter Roberson 2016년 3월 6일
A * sin(k * c) * x * e - j * beta * z
A * sin(k * c) * d * e - h * (x-d) * e - j * beta * z
However, I suspect the e- might be an exponential . If so then the forms might be
A * sin(k * c) * x * exp(-j * beta * z)
A * sin(k * c) * d * exp(-h * (x-d)) * exp( -j * beta * z)
Of course there are other possible meanings, such as
A * sin(kc * x) * exp(-j * beta * z)
It would be easier if there had been an image of the formulae available.
Image Analyst
Image Analyst 2016년 3월 6일
Or even asin(kc) for the arcsine function.

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


shabana javed
shabana javed 2017년 11월 19일
How to write a matlab code for the variable Step-size for improving conergence of Fx-LMS algorithm?

카테고리

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

태그

아직 태그를 입력하지 않았습니다.

Community Treasure Hunt

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

Start Hunting!

Translated by