Hello, I would like to convert this mathematical equation into MATLAB code.

조회 수: 2 (최근 30일)
hisham mohammed
hisham mohammed 2022년 12월 21일
댓글: John D'Errico 2022년 12월 21일
Hello, I would like to convert this mathematical equation into MATLAB code
  댓글 수: 1
John D'Errico
John D'Errico 2022년 12월 21일
You already got a valid answer. There is no reason to then post the same question a second time. I closed the other.

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

답변 (1개)

Bora Eryilmaz
Bora Eryilmaz 2022년 12월 21일
편집: Bora Eryilmaz 2022년 12월 21일
x = rand(100,1);
N = numel(x);
num = (sum(x)/N)^2;
den = sum(abs(x.^2)) / N;
s = num / den
s = 0.7726
  댓글 수: 1
Walter Roberson
Walter Roberson 2022년 12월 21일
x_m = rand(100,1);
%Bora's version, valid only for reals
N = numel(x_m);
num = (sum(x_m)/N)^2;
den = sum(abs(x_m.^2)) / N;
s = num / den
s = 0.7135
%a more compact version valid only for reals
num2 = mean(x_m).^2;
den2 = mean(x_m.^2);
s2 = num2/den2
s2 = 0.7135
%analog for compact version but valid for complex as well
num3 = abs(mean(x_m)).^2;
den3 = mean(abs(x_m).^2);
s3 = num3 / den3
s3 = 0.7135
What you can get away with depends on whether there might be complex numbers involved.

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

카테고리

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

Community Treasure Hunt

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

Start Hunting!

Translated by