Info

この質問は閉じられています。 編集または回答するには再度開いてください。

Hello, how can I do a (loop) for this equation to find more than one value of the CF ? Specifically, I mean more than one value for (xm)

1 回表示 (過去 30 日間)
hisham mohammed
hisham mohammed 2022 年 12 月 31 日
閉鎖済み: Voss 2023 年 1 月 1 日
function [CF]= Coherence_Factor(xm,N);
CF = ((abs (sum(xm))).^2) / (N* sum(abs(xm.^2)))
end

回答 (1 件)

VBBV
VBBV 2022 年 12 月 31 日
編集済み: VBBV 2022 年 12 月 31 日
xm = rand(5,10);
N = 10;
[CF]= Coherence_Factor(xm,N)
CF = 1×10
0.4110 0.3906 0.3169 0.3752 0.2497 0.3349 0.3822 0.4066 0.4420 0.3975
function [CF]= Coherence_Factor(xm,N);
CF = ((abs (sum(xm))).^2) ./ (N* sum(abs(xm.^2)));
end
  2 件のコメント
VBBV
VBBV 2022 年 12 月 31 日
for loop is not needed to find more than one value of CF or xm. However, you can still get such result with for loop also as
xm = randi([0 10],1,10);
N = 10;
for k = 1:length(xm)
CF(k)= Coherence_Factor(xm(k),N);
end
plot(CF)
function [CF]= Coherence_Factor(xm,N);
CF = ((abs (sum(xm))).^2) / (N* sum(abs(xm.^2)));
end

この質問は閉じられています。

Community Treasure Hunt

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

Start Hunting!

Translated by